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

new to django

2018-10-18 Thread Dilip Krishna
You might have created a virtual environment for django and got out of it.check for it?? -- 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

new to django

2018-10-18 Thread shubhambajaj204
"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 this message because you are subscribed to the Google Groups "Django users" group. To

Re: new to django

2018-09-15 Thread Jayram Rawat
> > On Sat, Sep 15, 2018, 5:28 PM Jayram Rawat wrote: > >> hello everyone , i am new to django can any one tell me that how to use >> django and whats the main purpose of it. thank you >> >> -- >> You received this message because you are subscribed to the

Re: new to django

2018-09-15 Thread Shahil Hussain
is amazing but you have to do practice learning it. I will recommend Django girls tutorial website to learn Django ( it is really easy) On Sat, Sep 15, 2018, 5:28 PM Jayram Rawat wrote: > hello everyone , i am new to django can any one tell me that how to use > django and whats the main p

new to django

2018-09-15 Thread Jayram Rawat
hello everyone , i am new to django can any one tell me that how to use django and whats the main purpose of it. thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fro

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

new to django

2018-08-29 Thread sankar ardhas
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 framework. I have ubuntu platform in my comuputer. I want installation steps for django and example also .. Can you help me? -- You received this

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

new to django

2018-08-28 Thread nonofo kokotetso
how do i deploy/run django projects after installing django and python -- 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: How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread imran
I just want to test other wise I can load the data dynamically On Wednesday, August 1, 2018 at 1:06:12 PM UTC+5:30, Mark Caglienzi wrote: > > On Wed, 2018-08-01 at 00:26 -0700, im...@wsegames.com > wrote: > > Here is my code > > > > > > class RegisterView(CreateView): > > form_class =

Re: How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread Mark Caglienzi
On Wed, 2018-08-01 at 00:26 -0700, im...@wsegames.com wrote: > Here is my code > > > class RegisterView(CreateView): > form_class = RegisterForm > template_name = 'accounts/register.html' > success_url = '/success-membership/' > > def form_valid(self, form): > url =

Re: How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread imran
Here is my code class RegisterView(CreateView): form_class = RegisterForm template_name = 'accounts/register.html' success_url = '/success-membership/' def form_valid(self, form): url = "http://enterprise.smsgupshup.com/GatewayAPI/rest; payload =

Re: How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread imran
I want to write api how to write can you help me? On Wednesday, August 1, 2018 at 12:47:55 PM UTC+5:30, Tim Vogt wrote: > > > https://www.twilio.com/blog/2014/04/building-a-simple-sms-message-application-with-twilio-and-django-2.html > > > Op 1 aug. 2018, om 09:15 heeft im...@wsegames.com het >

Re: How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread Tim Vogt (Tim Vogt)
https://www.twilio.com/blog/2014/04/building-a-simple-sms-message-application-with-twilio-and-django-2.html > Op 1 aug. 2018, om 09:15 heeft im...@wsegames.com het volgende geschreven: > > I want to write a api when form submit a sms should go to the phone, I don't > know how to do that can

How to write api for sms intregartion in django I am new in django?

2018-08-01 Thread imran
I want to write a api when form submit a sms should go to the phone, I don't know how to do that can somone help me regarding this? -- 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

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,

New to Django, Tutiorial01 not working,

2018-03-29 Thread Bryan Zimmer
Hello all, I managed to get Django and mod_wsgi installed OK. I then followed through with tutorial01, but even though I tried it twice, on two different machines, I have come up blank. This is the output I am getting for the first cut of Tutorial 01. I am using Django 2.0.3 with python3.6

Re: I am new in django

2017-10-31 Thread cjacquemet
Ici (en français) : https://openclassrooms.com/courses/developpez-votre-site-web-avec-le-framework-django ;) Le mardi 31 octobre 2017 12:37:25 UTC+1, BARHAHIGA JANVIER a écrit : > > > > svp j'aimerai ceer un site web gratuit sur jango. qui peut m'aider à le > faire rapidement? > > sorry i

Re: I am new in django

2017-10-31 Thread BARHAHIGA JANVIER
svp j'aimerai ceer un site web gratuit sur jango. qui peut m'aider à le faire rapidement? sorry i want tocreate a web for environnement information. some on in goup can help me to do it without to pay? -- You received this message because you are subscribed to the Google Groups "Django

Re: I am new in django

2017-10-30 Thread Anish Chapagain
Hi, Please follow tutorials on djangoproject.com and simpleisbetterthancomplex.com Sent from my iPhone > On Oct 30, 2017, at 20:46, cjacque...@gmail.com wrote: > > Hi ! > > I liked it : https://tutorial.djangogirls.org/en/ > > Le lundi 30 octobre 2017 15:45:49 UTC+1, Rafael Mauricio Builes

Re: I am new in django

2017-10-30 Thread cjacquemet
Hi ! I liked it : https://tutorial.djangogirls.org/en/ Le lundi 30 octobre 2017 15:45:49 UTC+1, Rafael Mauricio Builes Marin a écrit : > > Hi everybody, I would like to know what is the best way for learn to use > Django and how mach knowledge of django I need. > Thank you > > El contenido de

I am new in django

2017-10-30 Thread Rafael Mauricio Builes Marin
Hi everybody, I would like to know what is the best way for learn to use Django and how mach knowledge of django I need. Thank you -- El contenido de este mensaje y sus anexos son únicamente para el uso del destinatario y pueden contener información clasificada o reservada. Si usted no es

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 > <https://docs.djangoproject.com/en/1.11/intro/>. > > Am Mittwoch, 19. Juli 2017 13:04:50 UTC+2 schrieb dkushwah5: >>

Re: New to django

2017-07-19 Thread Stefano Probst
Hi! New to Django? Read the Getting started <https://docs.djangoproject.com/en/1.11/intro/>. 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 th

New to django

2017-07-19 Thread dkushwah5
I want to connect my bootstrap website with django's database. Please tell me how to do it. -- 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

2017-06-12 Thread yingi keme
into django Yingi Kem > On 12 Jun 2017, at 4:49 AM, jlew921 <jlew...@gmail.com> wrote: > > 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 from

Re: new to django

2017-06-12 Thread Jani Tiainen
lew...@gmail.com <mailto:jlew...@gmail.com>>: 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 from this group and stop receiving emails from it, s

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" <jlew...@gmail.com> wrote: > hi

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 <jlew...@gmail.com>: > hi guys new to django...and directions pls??? > > -- > You received this message because you are subscribed to the Google Groups > "Django user

new to django

2017-06-12 Thread 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 from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to

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

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

2017-04-10 Thread Cassium
Say I am collecting residence history and I allow the user to submit up to five previous addresses. I have a PEOPLE model and RESIDENCES model and anticipate a many-to-many relationship between. Back when I was working with Joomla I would have manages these models (well, tables) with a table

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 >

Re: new to Django

2017-03-05 Thread ludovic coues
-05 18:10 GMT+01:00 jayant jain <jayantjain...@gmail.com>: > 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 start contributing to Django and how to start contributing. > Example if i do need to

new to Django

2017-03-05 Thread jayant jain
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 start contributing to Django and how to *start contributing.Example if *i do need to know about networking, GUI ,etc. -- You received this message because you

Re: Hello I am new to django

2017-03-05 Thread ludovic coues
Sorry, I forget to mention it is to replace email = models.OneToOneField in UserProfile. Or more exactly, add the related_name argument to the email field. 2017-03-05 11:51 GMT+01:00 sarfaraz ahmed : > Where to include > models.OneToOneField(CustomUser,

Re: Hello I am new to django

2017-03-05 Thread sarfaraz ahmed
Where to include models.OneToOneField(CustomUser, related_name='profile') I tried including this in customuser model it does not understand. On 5 March 2017 at 14:24, ludovic coues wrote: > You should look at the related_name argument of relationship. Using ` >

Re: Hello I am new to django

2017-03-05 Thread ludovic coues
You should look at the related_name argument of relationship. Using ` models.OneToOneField(CustomUser, related_name='profile')` will add a profile property to your custom user object. Then your function became something like that : def get_full_name(self): full_name = '%s %s'

Hello I am new to django

2017-03-04 Thread sarfaraz ahmed
I am trying to create custom user authentication using abstractbaseuser. All worked fine. but I wanted to move first_name and last_name to other models from django.db import models from django.contrib.auth.models import AbstractBaseUser,BaseUserManager,PermissionsMixin from django.core.mail

Re: 'getaddrinfo failed', new to Django

2016-12-03 Thread Awais Arshad
On Tuesday, 5 May 2009 17:17:44 UTC+5, Chris DPS wrote: > > I'm starting out with Django. > > When I attempt to execute runserver, this error happens: > > Error: (10104, 'getaddrinfo failed') > > > > What is the reason for this and how can I fix it? > I am not too computer-savvy, so complete

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-09-01 Thread Rajesh Kumar
tutorial? >> >> On Monday, 29 August 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: >>> >>> Hi, >>> >>> i'm new to Django i need some mini project which contain at least 4 >>> page for go through how it works.. >>> >>>

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-09-01 Thread Jani Tiainen
, Abraham Varricatt wrote: This might be silly to ask but - can we assume you've completed the django tutorial? On Monday, 29 August 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: Hi, i'm new to Django i need some mini project which contain at least 4 page

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-31 Thread rajeshkmr9583
t 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: >> >> Hi, >> >> i'm new to Django i need some mini project which contain at least 4 >> page for go through how it works.. >> >> Thanks >> > -- You received this message because you are subscrib

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-31 Thread Rajesh Kumar
Varricatt' via Django users < django-users@googlegroups.com> wrote: > This might be silly to ask but - can we assume you've completed the django > tutorial? > > On Monday, 29 August 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: >> >> Hi, >> >> i'm new to Dja

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-31 Thread 'Abraham Varricatt' via Django users
This might be silly to ask but - can we assume you've completed the django tutorial? On Monday, 29 August 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: > > Hi, > > i'm new to Django i need some mini project which contain at least 4 > page for go through how it works.. > &

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-29 Thread 'voger' via Django users
6 02:26 μμ, rajeshkmr9583 wrote: Hi, i'm new to Django i need some mini project which contain at least 4 page for go through how it works.. Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop r

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-29 Thread Asad Jibran Ahmed
:33 UTC+5:30, rajeshkmr9583 wrote: >> >> Hi, >> >> i'm new to Django i need some mini project which contain at least 4 >> page for go through how it works.. >> >> Thanks >> > -- > You received this message because you are subscribed to th

Re: Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-29 Thread rajeshkmr9583
And the UI should created by your self. not the admin site because i've already created with help of admin but i need a new look of how it works with Customized(newly created) UI.. Thanks On Monday, 29 August 2016 16:56:33 UTC+5:30, rajeshkmr9583 wrote: > > Hi, > > i'm n

Hi, i'm new to django i need some mini project which contain atleast 4 page for go through how it works

2016-08-29 Thread rajeshkmr9583
Hi, i'm new to Django i need some mini project which contain at least 4 page for go through how it works.. Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fro

Re: Hi. i'm new to django, i have lot of doubts about AD

2016-08-26 Thread Rafael E. Ferrero
build script available for > learning > > On Thursday, 25 August 2016 19:27:35 UTC+5:30, M Hashmi wrote: >> >> What is your code and what you are trying to achieve? >> >> On Thu, Aug 25, 2016 at 5:18 AM, rajeshkmr9583 <rajesh...@gmail.com> >> wrote: >> &g

Re: Hi. i'm new to django, i have lot of doubts about AD

2016-08-26 Thread rajeshkmr9583
Thu, Aug 25, 2016 at 5:18 AM, rajeshkmr9583 <rajesh...@gmail.com > > wrote: > >> Hi guys, >> i'm new to django framework and now my doubt id how to create AD for >> login page >> >> Thanks >> >> -- >> You received this message

Re: Hi. i'm new to django, i have lot of doubts about AD

2016-08-25 Thread M Hashmi
What is your code and what you are trying to achieve? On Thu, Aug 25, 2016 at 5:18 AM, rajeshkmr9583 <rajeshkmr9...@gmail.com> wrote: > Hi guys, > i'm new to django framework and now my doubt id how to create AD for > login page > > Thanks > > -- > You rec

Hi. i'm new to django, i have lot of doubts about AD

2016-08-25 Thread rajeshkmr9583
Hi guys, i'm new to django framework and now my doubt id how to create AD for login page Thanks -- 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

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
w to display it properly in a template so i can update the > count (either add or subtract a number of VM's from a server). I'm new to > both Django and Python, so please excuse any ignorance here... Here are my > relevant models: > > class Image(models.Model): > name = models.CharF

Re: New to Django

2016-08-20 Thread Sergiy Khohlov
first part of the dictionary, then > the second by calling the value on child_list.items which is images. So > far, nothing I've tried is working no matter how I loop through it in the > template. I'm still stuck on this as nothing I have looked up has worked, > but I am new to django, so there may be s

Re: New to Django

2016-08-20 Thread Wolf Painter
, then the second by calling the value on child_list.items which is images. So far, nothing I've tried is working no matter how I loop through it in the template. I'm still stuck on this as nothing I have looked up has worked, but I am new to django, so there may be something I'm missing.: {% for server

Re: New to Django

2016-08-18 Thread Derek
currently creating a DJango app to manage > everything. I'm stuck in a big way. I currently have models that track > servers, images and child images launched from the parent, but I can't > figure out how to display it properly in a template so i can update the > count (either ad

Re: New to Django

2016-08-17 Thread Wolf Painter
'm stuck in a big way. I currently have models that track >> servers, images and child images launched from the parent, but I can't >> figure out how to display it properly in a template so i can update the >> count (either add or subtract a number of VM's from a server). I'm ne

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
; servers, images and child images launched from the parent, but I can't >> figure out how to display it properly in a template so i can update the >> count (either add or subtract a number of VM's from a server). I'm new to >> both Django and Python, so please excuse any i

Re: New to Django

2016-08-17 Thread Andrew Beales
it properly in a template so i can update the > count (either add or subtract a number of VM's from a server). I'm new to > both Django and Python, so please excuse any ignorance here... Here are my > relevant models: > > class Image(models.Model): > name = models.CharField(v

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

New to Django

2016-08-15 Thread Wolf Painter
everything. I'm stuck in a big way. I currently have models that track servers, images and child images launched from the parent, but I can't figure out how to display it properly in a template so i can update the count (either add or subtract a number of VM's from a server). I'm new to both

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

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
/problema1a.png> > ´ > > > 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 Groups > "Django users" group. > To unsubscribe from this gr

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

2016-04-26 Thread Cronos Cto
<https://lh3.googleusercontent.com/-53wX5hx6nxM/Vx__3vuBfII/AIU/vEkcdCnsMHI3iL608xJNXrQfWiuyvFzCgCLcB/s1600/problema1a.png> ´ 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

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

2016-04-26 Thread Patrick Harding
maybe giving it a namespace would handle it for you? such as include('sistema.urls', namespace='sistema') if not you can try this. the error i get is that you should "pass the callable instead" which means in your imports include the views that you want to import, then call them in you

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

2016-04-26 Thread Cronos Cto
I have tried the include solution. Just creates more erros as knbk said. -- 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 (stuck at the end of the tutorial)

2016-04-26 Thread Cronos Cto
terça-feira, 26 de Abril de 2016 às 08:33:09 UTC+1, Cronos Cto escreveu: > > > Hello Django Lovers. > > So I started on Django as project of mine. Seems like a great first > framework to start on. At the moment I am stuck at this: > > > >

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

2016-04-26 Thread knbk
Since 1.9, admin.site.urls is a special case, and you should not use include(). If you do, you'll trigger some deprecation warnings due to changes to include(). On Tuesday, April 26, 2016 at 6:33:40 PM UTC+2, Nikhil Beniwal wrote: > > The Problem is in your line 21. > > admin.site.urls should

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

2016-04-26 Thread Nikhil Beniwal
The Problem is in your line 21. admin.site.urls should be wrapped inside include like :- url(r'^admin/', include(admin.site.urls)), On Tuesday, April 26, 2016 at 1:03:09 PM UTC+5:30, Cronos Cto wrote: > > > Hello Django Lovers. > > So I started on Django as project of mine. Seems like a great

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

2016-04-26 Thread Cristiano Valente
You have defined no view to handle the root url. You only have two routes: ^/sistema and ^/admin. Besides, you should wrap admin.site.url in an include(). Il giorno martedì 26 aprile 2016 09:33:09 UTC+2, Cronos Cto ha scritto: > > > Hello Django Lovers. > > So I started on Django as project of

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

2016-04-26 Thread Cronos Cto
Hello Django Lovers. So I started on Django as project of mine. Seems like a great first framework to start on. At the moment I am stuck at this: This was after

Re: New to Django

2016-03-01 Thread Chris Bartos
The best way to use Python especially Django is by creating what is called a "Virtual Environment". This is a separate instance of Python that you can install all the tools that you need to run your Django app without having to messing up your current Python instance. It will also help to

Re: New to Django

2016-02-29 Thread Gary Dhillon
Thanks, really appreciate it! On Monday, 29 February 2016 19:19:21 UTC-7, Lachlan Musicman wrote: > > You will find there are two different pips on your computer - the default > is obv 2.7. the most likely command you will need is pip3 (on ubuntu), but > your best bet is to: > > - set up a

Re: New to Django

2016-02-29 Thread Lachlan Musicman
You will find there are two different pips on your computer - the default is obv 2.7. the most likely command you will need is pip3 (on ubuntu), but your best bet is to: - set up a virtualenv - set up your path to default to python 3.5.1 I would use the virtualenv solution personally. There

New to Django

2016-02-29 Thread Gary Dhillon
I've installed Django and I keep getting no module named django when importing. I have python 3.5.1 and used pip to install django 1.9.2. Its showing up on my python 2.7 though. Any help would be appreciated. -- You received this message because you are subscribed to the Google Groups "Django

Re: New on Django and applications

2015-12-16 Thread Gabriela Lavinia Gheghea
Hello Take a look here: https://codingforentrepreneurs.com/ there are some very interesting tutorials You can learn a lot of things from there. Have a nice day! On Wednesday, 16 December 2015 12:53:56 UTC+2, Baptiste Guillaud wrote: > > Hi ! > > I'm new on Django, I'm French

Re: New on Django and applications

2015-12-16 Thread Jani Tiainen
Hi, First reply provided you to a starting point - official Django tutorial. And considering that Django is web application framework you can build pretty much anything that you can imagine to work on web. On 16.12.2015 12:49, Baptiste Guillaud wrote: Hi ! I'm new on Django, I'm French

<    1   2   3   4   5   >