Re: New to Django

2022-11-06 Thread Kevin gallagher
Thanks for the help! On Thursday, November 3, 2022 at 7:28:08 PM UTC subtitle indo wrote: > Please let me know if that sounds okay. > > On Wed, Nov 2, 2022 at 6:05 PM Kevin gallagher > wrote: > >> Hi guys, >> Im currently learning django and am doing a project for college. Im >> building an

Re: New to Django

2022-11-02 Thread Sebastian Jung
Hello kevin, There are several django booking apps like this https://github.com/bernii/django-reservations I think its easier to change existing code to your requirements then begin from strech. Good luck Kevin gallagher schrieb am Mi., 2. Nov. 2022, 18:04: > Hi guys, > Im currently learning

Re: New to Django

2021-10-16 Thread Lalit Suthar
I recommand https://www.youtube.com/playlist?list=PLEsfXFp6DpzRMby_cSoWTFw8zaMdTEXgL On Sun, 3 Oct 2021 at 17:32, bnmng wrote: > I think you'll get a few opinions on this. My opinion is no. I feel the > docs are very good but difficult to understand as a beginner. I like > Mozilla's into

Re: New to Django

2021-10-14 Thread Adrian Valenzuela
Nice! Thanks for this! I'm new too and this already looks like a great resource. On Sunday, October 3, 2021 at 5:01:41 AM UTC-7 bnmng wrote: > I think you'll get a few opinions on this. My opinion is no. I feel the > docs are very good but difficult to understand as a beginner. I like >

Re: New to Django

2021-10-05 Thread Adeyemi Deji
Hi, I started roughly too. Began paying attention as it started getting interesting. Django documentation was actually wat got me started but before that I went through some pdfs, had a lot of that on my pc. The poll app in django documentation really helped, don't think I would be where I am

Re: New to Django

2021-10-03 Thread bnmng
I think you'll get a few opinions on this. My opinion is no. I feel the docs are very good but difficult to understand as a beginner. I like Mozilla's into with the Local Library tutorial to get started https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django On Friday, October 1,

Re: new in Django

2021-08-05 Thread Fulbéria Tangbé
I'm fine! Le jeu. 29 juil. 2021 à 13:06, Ogara Dennis a écrit : > Hello Friends > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to

RE: Re: NEW TO DJANGO

2020-05-20 Thread Vishesh Mangla
  Sent from Mail for Windows 10 From: Madhav NandanSent: 20 May 2020 22:19To: Django usersSubject: Re: NEW TO DJANGO I need to know what I should do so that once I click a hyperlink, it will redirect me to a payment page and I need to make a working payment option like paypal integration

RE: Re: NEW TO DJANGO

2020-05-20 Thread Vishesh Mangla
Haven’t you used the redirect() function in Django? Sent from Mail for Windows 10 From: Madhav NandanSent: 20 May 2020 22:19To: Django usersSubject: Re: NEW TO DJANGO I need to know what I should do so that once I click a hyperlink, it will redirect me to a payment page and I need to make

Re: NEW TO DJANGO

2020-05-20 Thread Madhav Nandan
I need to know what I should do so that once I click a hyperlink, it will redirect me to a payment page and I need to make a working payment option like paypal integration or razorpay integration. I did installed sdk, I made account on razorpay. what next? thanks for response. > > *From:

Re: NEW TO DJANGO

2020-05-19 Thread Akshat Zala
You can study https://developer.paypal.com/docs/api/quickstart/ On Wednesday, 20 May 2020 08:57:06 UTC+5:30, Akshat Zala wrote: > > I agree with Vishesh, You require api key which needs to be in settings.py > file > > On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote: >> >> Your

Re: NEW TO DJANGO

2020-05-19 Thread Hella Nick
你是阿三吗? Akshat Zala 于2020年5月20日周三 上午11:27写道: > I agree with Vishesh, You require api key which needs to be in settings.py > file > > On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote: >> >> Your question is not clear to me. What exactly do you want ?You do not >> require django to

Re: NEW TO DJANGO

2020-05-19 Thread Akshat Zala
I agree with Vishesh, You require api key which needs to be in settings.py file On Tuesday, 19 May 2020 20:43:17 UTC+5:30, Vishesh Mangla wrote: > > Your question is not clear to me. What exactly do you want ?You do not > require django to go to a site , rather you require a hyperlink. > > >

RE: NEW TO DJANGO

2020-05-19 Thread Vishesh Mangla
Your question is not clear to me. What exactly do you want ?You do not require django to go to a site , rather you require a hyperlink.  Sent from Mail for Windows 10 From: Madhav NandanSent: 19 May 2020 20:34To: django-users@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2020-04-26 Thread Adam H
I realize this is an old post. so this is for the next person who stumbles in here looking for an answer to the same question. I had the same problem. for me, i was missing a colon in my code. it was that simple. check for red underlines in your code i tried runserver again, python3 manage.py

Re: New to Django to select between 3.0 and 2.2

2020-03-13 Thread אורי
Hi Mrinal, It depends on the packages you are using (dependencies). Which Django version do they support? If all your dependencies support Django 3.0, go for it. Otherwise, go for 2.2. I'm personally still using Django 2.1 for Speedy Net, but I'm waiting for PR #12332 to be released to

Re: New to Django to select between 3.0 and 2.2

2020-03-13 Thread Andréas Kühne
Hi Mrinal, Django is a very mature framework - new releases rarely have any issues that hinder them from being used in production. For a new project you should definitely go for 3.0 - you will start with the correct structure for the new async features and you will also not have any issues with

Re: new to django

2020-03-03 Thread Naveen Arora
Hi, Have a look at my tutorials :) https://www.geeksforgeeks.org/django-tutorial/ Cheers, Naveen Arora On Sunday, 1 March 2020 23:34:45 UTC+5:30, Gurjot Kawatra wrote: > > hello everyone ...if anybody could help me out > my django server is started and i'm able to see congratulation

Re: new to django

2020-03-02 Thread victor awakan
You can first try the django official tutorial. This will give you a rough idea how things works. https://docs.djangoproject.com/en/3.0/ On Sunday, March 1, 2020 at 8:04:45 PM UTC+2, Gurjot Kawatra wrote: > > hello everyone ...if anybody could help me out > my django server is started and

Re: new to django

2020-03-02 Thread Lokendra Chouhan
Django life cycle link - https://www.reddit.com/r/webexpert/comments/dgp283/django_request_response_cycle/ On Mon, Mar 2, 2020 at 12:41 PM Aditya Khatwa wrote: > Congratulations 1st step completed a 100 more to go. > > On Sun, 1 Mar 2020, 23:55 Omkar Parab, wrote: > >> Here's the Perfect

Re: new to django

2020-03-01 Thread Aditya Khatwa
Congratulations 1st step completed a 100 more to go. On Sun, 1 Mar 2020, 23:55 Omkar Parab, wrote: > Here's the Perfect Django tutorial. > From development to production. > > https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p > > On Sun, Mar 1, 2020, 11:33 PM Gurjot

Re: new to django

2020-03-01 Thread Omkar Parab
Here's the Perfect Django tutorial. >From development to production. https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p On Sun, Mar 1, 2020, 11:33 PM Gurjot Kawatra wrote: > hello everyone ...if anybody could help me out > my django server is started and i'm able

Re: New to Django and Python

2020-01-05 Thread Hedrick Godson's
Wish you well with ur new journey On Sun, 5 Jan 2020, 16:50 'Dash LaLonde' via Django users < django-users@googlegroups.com> wrote: > Hello, > > Just wanted to say hello and let you all know that I will probably be > posting many questions. > > -- > You received this message because you are

Re: New project Django.....any one willing to assist in doing a project...

2019-07-10 Thread Nitin Kalmaste
Can you will teach me I am also starting django On Wed 10 Jul, 2019, 4:56 PM Joel Rotich, wrote: > Share your emailNeed someone really quickI have some basics but I > need to work with an expert to speed up. I will pay for Hrs used. > > -- > You received this message because you are

Re: New to Django

2018-12-16 Thread Pradeep Sukhwani
Normally this type of issue comes when you are not using the environment where Django is installed or maybe you forgot to install Django. To confirm Django is install successfully run this in your terminal: python -c "import django; print(django.get_version())" On Saturday, December 15, 2018

Re: New to Django

2018-12-16 Thread Steven N
I think you have not installed django, `pip install django` you can confirm if django is installed in your current environment by doing `pip list` if it is, you will see it in the list. This might come in handy On Sun, Dec 16, 2018, 1:47 PM

Re: New to Django

2018-12-16 Thread tom riddle
Thanks for the responses. I was able to figure this out - I believe my issue was that I did not activate the virtual environment and cd into the folder containing the Django-admin exec file. Once I did that the command worked. On Sun, Dec 16, 2018 at 5:47 AM Okware Aldo wrote: > I can remotely

Re: New to Django

2018-12-16 Thread Okware Aldo
I can remotely help, provide access me with remote access or push code github On Sat, 15 Dec 2018, 20:54 Hello - I'm trying to get Django up and running and I'm having some likely > trivial trouble. I'm following the "Writing your first Django app" > tutorial, but I'm getting stuck trying to

Re: New to Django

2018-12-15 Thread Gene LaRose
Have you installed a new environment and django? On Sat, Dec 15, 2018, 12:53 PM Hello - I'm trying to get Django up and running and I'm having some likely > trivial trouble. I'm following the "Writing your first Django app" > tutorial, but I'm getting stuck trying to create the project using >

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
I have sorted it out using a different approach 'AbstractUser'. Thanks On Tue, Oct 30, 2018, 12:19 PM Adrian Chipukuma wrote: > Thanks for the help. Though if I remove the declarations of the > first_name, last_name and email. Then I will not be able to see these in > the Register

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
Thanks for the help. Though if I remove the declarations of the first_name, last_name and email. Then I will not be able to see these in the Register form.. The fields password1 and password2 are just working well and can be saved... The issue is on the first_name, last_name and email

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-29 Thread Manjunath
Remove declaration of first_name, last_name & email in Form calss. class SignUpForm(UserCreationForm): class meta(): model = User fields = ('username', 'first_name', 'last_name', 'email', 'password1', 'password2', ) And while Saving the form, follow below steps. if

Re: new to django

2018-10-24 Thread SHUBHAM .SINGH. RATHORE
First you createsuperuser than runserver On Thu 18 Oct, 2018 2:50 pm , wrote: > "django-admin startproject mysite" i tried to run this in cmd propmt but it > is not working showing "django-admin' is not recognized as an internal or > external command," what to do? > > -- > You received

Re: new to django

2018-10-24 Thread Mamadou Harouna Diallo
Hello, Are you active your virtuel env ? You must active the virtuel env Le jeu. 18 oct. 2018 à 09:20, a écrit : > "django-admin startproject mysite" i tried to run this in cmd propmt but it > is not working showing "django-admin' is not recognized as an internal or > external command," what

Re: new to django

2018-10-24 Thread maunish dave
Chech if you have installed django or not Type this command on cmd ' django pip install' On Wed 24 Oct, 2018, 8:05 PM Aditya Bohra, wrote: > > > On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com > wrote: >> >> "django-admin startproject mysite" i tried to run this in

Re: new to django

2018-10-24 Thread Ing.Daniel Bojorge
Thanks for tell us. Dios L@s Bendiga Saludos, [image: --] daniel.bojorge [image: http://]about.me/daniel.bojorge *Curso Django 2.1 (Course of Django 2.1)* Mi Blog Nicaragua "Si

Re: new to django

2018-10-24 Thread Aditya Bohra
On Thursday, October 18, 2018 at 2:51:02 PM UTC+5:30, shubham...@gmail.com wrote: > > "django-admin startproject mysite" i tried to run this in cmd propmt but it > is not working showing "django-admin' is not recognized as an internal or > external command," what to do? > > Is it working

Re: new to django

2018-10-18 Thread Joel
No, sorry. On Fri, 19 Oct, 2018, 9:18 AM Shubham Bajaj, wrote: > I already did these all... > Can u help me with team viewer if possible > > On Fri 19 Oct, 2018, 9:14 AM Joel, wrote: > >> Or you may need to add the location of your installation directory to the >> system path. >> >> On Fri, 19

Re: new to django

2018-10-18 Thread Shubham Bajaj
Kk thanks.. On Fri 19 Oct, 2018, 9:22 AM Joel, wrote: > No, sorry. > > On Fri, 19 Oct, 2018, 9:18 AM Shubham Bajaj, > wrote: > >> I already did these all... >> Can u help me with team viewer if possible >> >> On Fri 19 Oct, 2018, 9:14 AM Joel, wrote: >> >>> Or you may need to add the location

Re: new to django

2018-10-18 Thread Shubham Bajaj
I already did these all... Can u help me with team viewer if possible On Fri 19 Oct, 2018, 9:14 AM Joel, wrote: > Or you may need to add the location of your installation directory to the > system path. > > On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, > wrote: > >> Thank u.. >> >> On Fri 19

Re: new to django

2018-10-18 Thread Joel
Or you may need to add the location of your installation directory to the system path. On Fri, 19 Oct, 2018, 9:00 AM Shubham Bajaj, wrote: > Thank u.. > > On Fri 19 Oct, 2018, 8:35 AM Joel Mathew, wrote: > >> just purge and reinstall django >> >> >> On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj

Re: new to django

2018-10-18 Thread Shubham Bajaj
Thank u.. On Fri 19 Oct, 2018, 8:35 AM Joel Mathew, wrote: > just purge and reinstall django > > > On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj > wrote: > > > > I tried this but it showing no module found django.core > > Pls help me.. > > > > On Fri 19 Oct, 2018, 6:37 AM satyam mishra, wrote:

Re: new to django

2018-10-18 Thread Joel Mathew
just purge and reinstall django On Fri, 19 Oct 2018 at 08:14, Shubham Bajaj wrote: > > I tried this but it showing no module found django.core > Pls help me.. > > On Fri 19 Oct, 2018, 6:37 AM satyam mishra, wrote: >> >> just install all the necessary module needed, just open the location of

Re: new to django

2018-10-18 Thread Shubham Bajaj
I tried this but it showing no module found django.core Pls help me.. On Fri 19 Oct, 2018, 6:37 AM satyam mishra, wrote: > just install all the necessary module needed, just open the location of > project where you want your project located to be..for example if you want > your project to be

Re: new to django

2018-10-18 Thread Shubham Bajaj
I am using windows 10 On Fri 19 Oct, 2018, 12:59 AM Vivek Jha, wrote: > Use this step and don't forget to install pip3 > Command is for linux it is sido apt-get install Python3.6-pip3 > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Re: new to django

2018-10-18 Thread satyam mishra
just install all the necessary module needed, just open the location of project where you want your project located to be..for example if you want your project to be located in desktop then use cmd in cmd prompt 'cd desktop' then create your project by using the command ;django-admin

Re: new to django

2018-10-18 Thread satyam mishra
just try 'python manage.py projectname/ ' and run the project On Thu, Oct 18, 2018 at 8:05 PM Nelson Varela wrote: > > did you install django... > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and

Re: new to django

2018-10-18 Thread Shubham Bajaj
Yeah.. When I tried running import django in idle it is not showing any error On Thu 18 Oct, 2018, 8:05 PM Nelson Varela, wrote: > > did you install django... > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Re: new to django

2018-10-18 Thread Nelson Varela
did you install django... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: New to Django

2018-10-18 Thread fatoubinetou196
Le mercredi 17 octobre 2018 21:21:54 UTC, fatoubi...@gmail.com a écrit : > > Hi! I wanted to know if you could frame me on how to design my application > of visualizations of the statutes of a payments by the owner with Django. > Because it's my first time and I do not quite understand how to

Re: new to django

2018-10-18 Thread Shubham Bajaj
Django.core* On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh, wrote: > bro first select a file where your project have stored. > > On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj > wrote: > >> I and getting error no module found django.cargo. >> I tried for three hours but unable to start my first

Re: new to django

2018-10-18 Thread Shubham Bajaj
No module named django.core how to solve this issue On Thu 18 Oct, 2018, 4:05 PM Shubham Bajaj, wrote: > When I tried to run "admin.py start project mysite" in cmd it shows > module django.cargo not found > > On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh, wrote: > >> bro first select a file

Re: new to django

2018-10-18 Thread Shubham Bajaj
When I tried to run "admin.py start project mysite" in cmd it shows module django.cargo not found On Thu 18 Oct, 2018, 3:28 PM Pradeep Singh, wrote: > bro first select a file where your project have stored. > > On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj > wrote: > >> I and getting error no

Re: new to django

2018-10-18 Thread Pradeep Singh
bro first select a file where your project have stored. On Thu, 18 Oct 2018 at 15:23, Shubham Bajaj wrote: > I and getting error no module found django.cargo. > I tried for three hours but unable to start my first project pls help me.. > > On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, < >

Re: new to django

2018-10-18 Thread Shubham Bajaj
I and getting error no module found django.cargo. I tried for three hours but unable to start my first project pls help me.. On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, wrote: > You might have created a virtual environment for django and got out of > it.check for it?? > > -- > You received

Re: new to django

2018-09-15 Thread Jayram Rawat
Thanks 4 the advice.. i will follow as you mentioned.. On Sat, Sep 15, 2018, 6:37 PM Shahil Hussain wrote: > Django is cool technology through which you make a web app(or you can say > website) in which the backend(the database, all the information) and > frontend (the website that you see

Re: new to django

2018-09-15 Thread Shahil Hussain
Django is cool technology through which you make a web app(or you can say website) in which the backend(the database, all the information) and frontend (the website that you see from your device, the designed pages) are connected together. I am also a slightly experienced beginner. ; ) Django is

Re: new to django

2018-08-29 Thread sankar ardhas
Hi all, Thanks for your response. On Wed, Aug 29, 2018, 9:08 PM Jani Tiainen wrote: > Hi, > > Django Girls do have excellent tutorial which also does have very detailed > setup guide. > > > ke 29. elok. 2018 klo 14.16 sankar ardhas > kirjoitti: > >> Hi all, >> I am a web

Re: new to django

2018-08-29 Thread Jani Tiainen
Hi, Django Girls do have excellent tutorial which also does have very detailed setup guide. ke 29. elok. 2018 klo 14.16 sankar ardhas kirjoitti: > Hi all, > I am a web developer in laravel and codeigniter php web > frameworks. I want to learn how to build web application with django

Re: new to django

2018-08-29 Thread tamangsiddharth12
Please make sure you install latest django. I have also started working on django and used the django 2.0.2 version. To install this you will need pip3 which is from python3. You can use django 2 versions. On Wednesday, August 29, 2018 at 4:46:15 PM UTC+5:30, sankar ardhas wrote: > > Hi all, >

Re: new to django

2018-08-29 Thread Joel Mathew
There are two steps: Install pip, Use pip to install django Follow the tutorial: https://docs.djangoproject.com/en/2.1/intro/install/ On Wed, 29 Aug 2018 at 16:46, sankar ardhas wrote: > > Hi all, > I am a web developer in laravel and codeigniter php web frameworks. > I want to learn

Re: new to django

2018-08-28 Thread Manmeet Singh
Also check out this https://tutorial.djangogirls.org/en/django_start_project/ On Tue, Aug 28, 2018 at 5:11 PM Manmeet Singh <97singh.manm...@gmail.com> wrote: > Check out this tutorial: > > https://www.digitalocean.com/community/tutorials/how-to-create-a-django-app-and-connect-it-to-a-database >

Re: new to django

2018-08-28 Thread Manmeet Singh
Check out this tutorial: https://www.digitalocean.com/community/tutorials/how-to-create-a-django-app-and-connect-it-to-a-database On Tue, Aug 28, 2018 at 5:05 PM nonofo kokotetso wrote: > how do i deploy/run django projects after installing django and python > > -- > You received this message

Re: New to Django, Tutiorial01 not working,

2018-03-29 Thread Marcin Bacławski
u probably run http://localhost:8000/ ,u should run http://localhost:8000/polls -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: New to Django, Tutiorial01 not working,

2018-03-29 Thread prince gosavi
You need to use the following url *http://localhost:8000/polls/* as you have mentioned that you want to go under the "polls/" django parses through the urls to find "/polls/" and if it does not exists it will surely give an error as you are requesting things that it does not have. On Friday,

Re: New to django

2017-07-20 Thread dkushwah5
Thanx Stefano :) On Wednesday, July 19, 2017 at 7:19:08 PM UTC+5:30, Stefano Probst wrote: > > Hi! > > New to Django? Read the Getting started > . > > Am Mittwoch, 19. Juli 2017 13:04:50 UTC+2 schrieb dkushwah5: >> >> I want to connect my bootstrap

Re: New to django

2017-07-19 Thread Stefano Probst
Hi! New to Django? Read the Getting started . Am Mittwoch, 19. Juli 2017 13:04:50 UTC+2 schrieb dkushwah5: > > I want to connect my bootstrap website with django's database. Please tell > me how to do it. > -- You received this message because

Re: new to django

2017-06-12 Thread yingi keme
I recommend you buy the book 'django unleashed'. It is highly recommended for beginners. Some sites will help you, but not nearly as close to the book 'Django Unleashed' And hope you are proficient in python programming language? If not, i suggest you learn python first before diving into

Re: new to django

2017-06-12 Thread Jani Tiainen
Hi, And welcome to Django. Also more verbose tutorial can be found from Django Girls [1] [1] https://tutorial.djangogirls.org/en/ On 12.06.2017 14:12, Matthias Müller wrote: The tutorial in the documentation is a good start. cheers Matthias 2017-06-12 5:49 GMT+02:00 jlew921

Re: new to django

2017-06-12 Thread Oladipupo Elegbede
Take the Django tutorial on the official Django website. Take the Django tutorial on the Django girls website. Do something with what you've learnt. Come back with questions.. Welcome to Django. On Jun 12, 2017 6:05 AM, "jlew921" wrote: > hi guys new to django...and

Re: new to django

2017-06-12 Thread Matthias Müller
The tutorial in the documentation is a good start. cheers Matthias 2017-06-12 5:49 GMT+02:00 jlew921 : > hi guys new to django...and directions pls??? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: New to django and ORM. So a basic question about data inserts

2017-04-11 Thread Camilo Torres
Hi, Lets suppose we simplify your problem and we have these 2 django models: from django.db import models class Person(models.Model): name = models.CharField(max_length=255, null=False, blank=False) def __str__(self): return self.name class Residence(models.Model): address

Re: New to django and ORM. So a basic question about data inserts

2017-04-10 Thread Lachlan Musicman
-- The most dangerous phrase in the language is, "We've always done it this way." - Grace Hopper On 11 April 2017 at 05:35, Cassium wrote: > Say I am collecting residence history and I allow the user to submit up to > five previous addresses. I have a PEOPLE model

Re: new to Django

2017-03-06 Thread chris rose
+1 ludovic -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: new to Django

2017-03-06 Thread chris rose
+1 ludovic -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: new to Django

2017-03-06 Thread chris rose
+1 ludovic -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: new to Django

2017-03-06 Thread Shawn Milochik
Go here: https://code.djangoproject.com/ You'll find instructions on how to contribute, and also the bug tracker, where you can search for easy bugs to fix. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: new to Django

2017-03-06 Thread 'Anoosha Masood Keen' via Django users
Hi I am new to Django and I don't know where to start or what to do for contribution? On Sunday, March 5, 2017 at 10:58:09 PM UTC+5, jayant jain wrote: > > Hi all users, > I am a new user of* Django* > with a basic knowledge of * Python* language .Please recommend *me what > more to learn* to

Re: new to Django

2017-03-05 Thread ludovic coues
If you haven't done so, you should do the django tutorial. It will give you a good view of what is available to django user. Then there is a few page in the documentation about contributing. https://docs.djangoproject.com/en/dev/internals/contributing/ What you'll need to learn depend on what

Re: New to Django

2016-08-20 Thread Wolf Painter
Hi Serge, I would love to speak to you about your app and how you use it. I'm new to django, so this has taken a bit to get used to but I really think it's the way to go for what I want to do with it. What's the best way to reach you? On Saturday, August 20, 2016 at 11:29:02 AM UTC-7, Sergiy

Re: New to Django

2016-08-20 Thread Wolf Painter
OMG THANK YOU!! This totally works! Thank you, Thank you, Thank you! On Saturday, August 20, 2016 at 12:30:26 PM UTC-7, Andrew Beales wrote: > > This works for me: > > {% for server, images in child_list.items %} > {{ server }} > {% for image in images %} > {% for key,val in

Re: New to Django

2016-08-20 Thread Andrew Beales
This works for me: {% for server, images in child_list.items %} {{ server }} {% for image in images %} {% for key,val in image.items %} {{ key }}: {{ val }} {% endfor %} {% endfor %} {% endfor %} In your template, 'image' is a list of dicts, so you need to loop

Re: New to Django

2016-08-20 Thread Sergiy Khohlov
I've created project for managing virtual machines via libvirt using django few years ago. Also you can take a look at ganeti project. I'm ready to answer any question related to django and cloud computing. Thanks, Serge 20 серп. 2016 20:23 "Wolf Painter" пише: > If you

Re: New to Django

2016-08-20 Thread Wolf Painter
If you look at the code for the template, images is in there. I've tried all the ways I found to display my multidimensional dictionary, one of which is to loop through the first part, then the second. If you look at the code below, I'm looping through the first part of the dictionary, then

Re: New to Django

2016-08-18 Thread Derek
In your view you have: context = { "server_list": serverlist, "image_list": imagelist, "child_list": childimagelist } So the variables being passed through to your template are named: server_list, image_list, child_list. In your template you call this:

Re: New to Django

2016-08-17 Thread Wolf Painter
Thank you, I will have to look into this. Django is a bit confusing to me as I'm just learning it, so I'm not as versed as I could be about all the options. What I'm trying to accomplish is a list of the copies of base images on each server, not sure if that makes sense. But here is an example:

Re: New to Django

2016-08-17 Thread 小柯
I think it's like answer ?? Just create the dictionary like data = {'a': [ [1, 2] ], 'b': [ [3, 4] ],'c':[ [5,6]] } and then do get it from view -- You received this message

Re: New to Django

2016-08-17 Thread Andrew Beales
All this talk about "child images on servers" has probably set off an alarm somewhere. On Wednesday, August 17, 2016 at 7:00:09 AM UTC+1, Andrew Beales wrote: > > Hi, you can use aggregation queries to count the child images connected to > each server: > > > # views.py > > from django.db.models

Re: New to Django

2016-08-17 Thread Andrew Beales
Hi, you can use aggregation queries to count the child images connected to each server: # views.py from django.db.models import Count def servers(request): servers = Server.objects.all() for server in servers: server.child_images = server.images.aggregate(total=Count('base'))

Re: New to Django

2016-08-16 Thread Luis Zárate
Hi, Try to implement a custom tag that can print Any dictionary in the form that you want. https://docs.djangoproject.com/en/1.10/howto/custom-template-tags/ El martes, 16 de agosto de 2016, Wolf Painter escribió: > Anyone have any ideas? I'm really stuck here... > >

Re: New to Django

2016-08-16 Thread Wolf Painter
Anyone have any ideas? I'm really stuck here... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this

Re: New to Django (stuck at the end of the tutorial)

2016-05-01 Thread Cronos Cto
Ty Aeron I will check it out. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: New to Django (stuck at the end of the tutorial)

2016-04-30 Thread Aaron Poncé
Just a related/unrelated sidenote.. I'm also new to Django and I found an amazing tutorial series on youtube... Just wanted to share it with you: https://youtu.be/FNQxxpM1yOs?list=PLQVvvaa0QuDeA05ZouE4OzDYLHY-XH-Nd It's a 12 part series and it really helped me get the ball rolling On

Re: New to Django (stuck at the end of the tutorial)

2016-04-29 Thread Mie Rex
I just did another try with a different version of Django which is same version of Django used in the book I am reading. It turns out where the project(mysite) saved has no effect on it. I think it's how Django suppose to behave. Perhaps you are not working with the same version of Django as

Re: New to Django (stuck at the end of the tutorial)

2016-04-28 Thread Cronos Cto
Nikhil Beniwal , I tried I get an error that says __init__() takes 1 positional argument but 2 were given. I don't understand, I must be doing something wrong since this was done with the help of the Django official tutorial. -- You received this message because you are subscribed to the

Re: New to Django (stuck at the end of the tutorial)

2016-04-27 Thread Mie Rex
> > I had a smiliar problem with another Django tutorial. > I was running Django with Anaconda environment and I took the advice from "Two Scoop Django" to have all projects stored in one directory and all the environment in another. Therefore the project "mysite" was initialized and put in

Re: New to Django (stuck at the end of the tutorial)

2016-04-27 Thread Nikhil Beniwal
You can define it like :- url(r'^$', 'apps_name.views.home', name='home'), On Wednesday, April 27, 2016 at 6:28:38 AM UTC+5:30, Cronos Cto wrote: > > Could you give me an example or so Vijay Khemali? > -- You received this message because you are subscribed to the Google Groups "Django

Re: New to Django (stuck at the end of the tutorial)

2016-04-26 Thread Cronos Cto
Could you give me an example or so Vijay Khemali? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this

Re: New to Django (stuck at the end of the tutorial)

2016-04-26 Thread Vijay Khemlani
You still haven't defined a rule to handle the root path, just admin and sistema On Tue, Apr 26, 2016 at 8:56 PM, Cronos Cto wrote: > > > ´ >

Re: New to Django (stuck at the end of the tutorial)

2016-04-26 Thread Cronos Cto
´ Doesnt seem to fix it still. I have no clue how to go further, totally new to django. -- You received this message because you are subscribed to the Google

  1   2   3   >