Re: I new to Django

2023-05-21 Thread 'Kasper Laudrup' via Django users

On 21/05/2023 16.26, khaled alshadbi wrote:

Hello friends
please help me to start from scratch... I want to build sales program 
using Python and Django




https://docs.djangoproject.com/en/4.2/intro/

Kind regards,
Kasper Laudrup

--
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/18ff3218-30a3-1b88-3553-2f5cefec5310%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


I new to Django

2023-05-21 Thread khaled alshadbi
Hello friends
please help me to start from scratch... I want to build sales program using 
Python and 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0d4c6fff-392a-4d1d-b0d3-ba80a0d54f18n%40googlegroups.com.


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 appointment website users can book a training session. These 
>> are my models:
>>
>> class TimeSlot(models.Model):
>>
>> title = models.CharField(max_length=50)
>>
>> def __str__(self):
>> return f'There is a slot at {self.title}'
>>
>>
>> class Booking(models.Model):
>>
>> user = models.ForeignKey(settings.AUTH_USER_MODEL,
>>  on_delete=models.CASCADE)
>> time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
>> booking_date = models.DateField(("Date"), default=date.today)
>>
>> def __str__(self):
>> return f'{self.user} has booked a session at 
>> {self.timeslot.title} on {self.booking_date}'
>>
>> I have the title field set as available session times, 1-2pm, 3-4pm etc.
>> I want the user to select a date and then be able to see what time slots 
>> are still available to book but I'm kind of lost and confused. Any help 
>> would be much appreciated! 
>>  
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/df45710f-3081-4836-bd09-d8060069d974n%40googlegroups.com.


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 django and am doing a project for college. Im
> building an appointment website users can book a training session. These
> are my models:
>
> class TimeSlot(models.Model):
>
> title = models.CharField(max_length=50)
>
> def __str__(self):
> return f'There is a slot at {self.title}'
>
>
> class Booking(models.Model):
>
> user = models.ForeignKey(settings.AUTH_USER_MODEL,
>  on_delete=models.CASCADE)
> time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
> booking_date = models.DateField(("Date"), default=date.today)
>
> def __str__(self):
> return f'{self.user} has booked a session at {self.timeslot.title}
> on {self.booking_date}'
>
> I have the title field set as available session times, 1-2pm, 3-4pm etc.
> I want the user to select a date and then be able to see what time slots
> are still available to book but I'm kind of lost and confused. Any help
> would be much appreciated!
>
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKGT9mys0yJGpE_TOW87ruPnvvxWzwh-Jo%2B3MrDSt_j9dmK4-A%40mail.gmail.com.


New to Django

2022-11-02 Thread Kevin gallagher
Hi guys,
Im currently learning django and am doing a project for college. Im 
building an appointment website users can book a training session. These 
are my models:

class TimeSlot(models.Model):

title = models.CharField(max_length=50)

def __str__(self):
return f'There is a slot at {self.title}'


class Booking(models.Model):

user = models.ForeignKey(settings.AUTH_USER_MODEL,
 on_delete=models.CASCADE)
time_slot = models.ForeignKey(TimeSlot, on_delete=models.CASCADE)
booking_date = models.DateField(("Date"), default=date.today)

def __str__(self):
return f'{self.user} has booked a session at {self.timeslot.title} 
on {self.booking_date}'

I have the title field set as available session times, 1-2pm, 3-4pm etc.
I want the user to select a date and then be able to see what time slots 
are still available to book but I'm kind of lost and confused. Any help 
would be much appreciated! 
 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1c6c2ab1-f852-4503-81c5-d072cf2dbb02n%40googlegroups.com.


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 with the Local Library tutorial to get started
> https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django
>
> On Friday, October 1, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com
> wrote:
>
>> Hi, I want to learn django very well but tutorials like youtube videos,
>> books and pay for online courses are not really satisfying me that much .
>> So if I decide to learn django directly from the documentation will I learn
>> good enough to Intermediate and Advance level ?  if yes please help me with
>> an order path to follow. 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a928d80a-eaf4-495e-8e0f-abc46ba3c9a0n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGp2JVHuh_m__mZ1UDr4chw7fctJbf3offf4o9%2BLRcCPg9j8Uw%40mail.gmail.com.


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 
> 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, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com 
> wrote:
>
>> Hi, I want to learn django very well but tutorials like youtube videos, 
>> books and pay for online courses are not really satisfying me that much . 
>> So if I decide to learn django directly from the documentation will I learn 
>> good enough to Intermediate and Advance level ?  if yes please help me with 
>> an order path to follow. 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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7d456d90-2a21-42f3-9d25-d694e6069283n%40googlegroups.com.


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 today if I didn't go through building the poll app as I walk through the 
documentation. Also there is this guy on youtube, don't know if you have 
heard of Dennis Ivy, he is really awesome, his story really got me and I 
have never forgotten it till 
date. https://www.youtube.com/channel/UCTZRcDjjkVajGL6wd76UnGg

On Saturday, October 2, 2021 at 5:09:04 AM UTC+2 richluet...@gmail.com 
wrote:

> Hi, I want to learn django very well but tutorials like youtube videos, 
> books and pay for online courses are not really satisfying me that much . 
> So if I decide to learn django directly from the documentation will I learn 
> good enough to Intermediate and Advance level ?  if yes please help me with 
> an order path to follow. 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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/04006489-2726-4dea-b4cf-bd174ee96b7fn%40googlegroups.com.


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, 2021 at 11:09:04 PM UTC-4 richluet...@gmail.com wrote:

> Hi, I want to learn django very well but tutorials like youtube videos, 
> books and pay for online courses are not really satisfying me that much . 
> So if I decide to learn django directly from the documentation will I learn 
> good enough to Intermediate and Advance level ?  if yes please help me with 
> an order path to follow. 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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a928d80a-eaf4-495e-8e0f-abc46ba3c9a0n%40googlegroups.com.


New to Django

2021-10-01 Thread Richlue Toure
Hi, I want to learn django very well but tutorials like youtube videos, 
books and pay for online courses are not really satisfying me that much . 
So if I decide to learn django directly from the documentation will I learn 
good enough to Intermediate and Advance level ?  if yes please help me with 
an order path to follow. 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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3f8fd50c-c3e2-4aba-bfb7-8284bdb57c61n%40googlegroups.com.


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 or razorpay integration. I did installed sdk, I made account on razorpay. what next? thanks for response. From: Madhav NandanSent: 19 May 2020 20:34To: django...@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com. 



-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5ec5605b.1c69fb81.9a1f5.8ba9%40mx.google.com.


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 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: Madhav NandanSent: 19 May 2020 20:34To: django...@googlegroups.comSubject: NEW TO DJANGO Dear Django fellas, I'm new to Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com. 



-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5ec55fec.1c69fb81.99dba.9ce0%40mx.google.com.


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: *Madhav Nandan 
> *Sent: *19 May 2020 20:34
> *To: *django...@googlegroups.com 
> *Subject: *NEW TO DJANGO
>
>  
>
> Dear Django fellas,
>
>  
>
> I'm new to Django here. I started learning and it's been a while and I'm 
> facing a lot of issues. Can somebody help me with *''how can I integrate 
> a payment system like PayPal to a link?''*
>
>  Like I have a link, if someone clicks on that link that will redirect the 
> user to the payment page and there on the payment provider works.
>
>  
>
> I just need to get started and somebody can guide me here hopefully. I 
> don't' need code or so.
>
>  
>
> Help me here.
>
>  
>
> Best regards,
>
>  
>
>  
>
>  
>
>  
>
> -- 
>
> Madhav Nandan
>
> cell: 9170459494
>
> Skype: gaurav.kumar3992
>
>  
>
> -- 
> 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...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>
>  
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/63a1a453-ee38-4eba-85f7-a4d6f46c367d%40googlegroups.com.


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 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 <https://go.microsoft.com/fwlink/?LinkId=550986> for 
>> Windows 10
>>
>>  
>>
>> *From: *Madhav Nandan
>> *Sent: *19 May 2020 20:34
>> *To: *django...@googlegroups.com
>> *Subject: *NEW TO DJANGO
>>
>>  
>>
>> Dear Django fellas,
>>
>>  
>>
>> I'm new to Django here. I started learning and it's been a while and I'm 
>> facing a lot of issues. Can somebody help me with *''how can I integrate 
>> a payment system like PayPal to a link?''*
>>
>>  Like I have a link, if someone clicks on that link that will redirect 
>> the user to the payment page and there on the payment provider works.
>>
>>  
>>
>> I just need to get started and somebody can guide me here hopefully. I 
>> don't' need code or so.
>>
>>  
>>
>> Help me here.
>>
>>  
>>
>> Best regards,
>>
>>  
>>
>>  
>>
>>  
>>
>>  
>>
>> -- 
>>
>> Madhav Nandan
>>
>> cell: 9170459494
>>
>> Skype: gaurav.kumar3992
>>
>>  
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
>>  
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/116f376b-07de-4527-9a07-cbe22515a7bb%40googlegroups.com.


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 go to a site , rather you require a hyperlink.
>>
>>
>>
>>
>>
>> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for
>> Windows 10
>>
>>
>>
>> *From: *Madhav Nandan
>> *Sent: *19 May 2020 20:34
>> *To: *django...@googlegroups.com
>> *Subject: *NEW TO DJANGO
>>
>>
>>
>> Dear Django fellas,
>>
>>
>>
>> I'm new to Django here. I started learning and it's been a while and I'm
>> facing a lot of issues. Can somebody help me with *''how can I integrate
>> a payment system like PayPal to a link?''*
>>
>>  Like I have a link, if someone clicks on that link that will redirect
>> the user to the payment page and there on the payment provider works.
>>
>>
>>
>> I just need to get started and somebody can guide me here hopefully. I
>> don't' need code or so.
>>
>>
>>
>> Help me here.
>>
>>
>>
>> Best regards,
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> --
>>
>> Madhav Nandan
>>
>> cell: 9170459494
>>
>> Skype: gaurav.kumar3992
>>
>>
>>
>> --
>> 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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
>>
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHfGPEezv6e-TRVG6en43jxfdPe9CDGL2hKR_Wtz-XfJDYkPWw%40mail.gmail.com.


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.
>
>  
>
>  
>
> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for 
> Windows 10
>
>  
>
> *From: *Madhav Nandan 
> *Sent: *19 May 2020 20:34
> *To: *django...@googlegroups.com 
> *Subject: *NEW TO DJANGO
>
>  
>
> Dear Django fellas,
>
>  
>
> I'm new to Django here. I started learning and it's been a while and I'm 
> facing a lot of issues. Can somebody help me with *''how can I integrate 
> a payment system like PayPal to a link?''*
>
>  Like I have a link, if someone clicks on that link that will redirect the 
> user to the payment page and there on the payment provider works.
>
>  
>
> I just need to get started and somebody can guide me here hopefully. I 
> don't' need code or so.
>
>  
>
> Help me here.
>
>  
>
> Best regards,
>
>  
>
>  
>
>  
>
>  
>
> -- 
>
> Madhav Nandan
>
> cell: 9170459494
>
> Skype: gaurav.kumar3992
>
>  
>
> -- 
> 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...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>
>  
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/433e54a0-11c6-490a-b21a-d2ab4de778c2%40googlegroups.com.


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 Django here. I started learning and it's been a while and I'm facing a lot of issues. Can somebody help me with ''how can I integrate a payment system like PayPal to a link?'' Like I have a link, if someone clicks on that link that will redirect the user to the payment page and there on the payment provider works. I just need to get started and somebody can guide me here hopefully. I don't' need code or so. Help me here. Best regards,-- Madhav Nandancell: 9170459494Skype: gaurav.kumar3992 -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com. 



-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5ec3f74c.1c69fb81.5e199.c04c%40mx.google.com.


NEW TO DJANGO

2020-05-19 Thread Madhav Nandan
Dear Django fellas,

I'm new to Django here. I started learning and it's been a while and I'm
facing a lot of issues. Can somebody help me with *''how can I integrate a
payment system like PayPal to a link?''*
 Like I have a link, if someone clicks on that link that will redirect the
user to the payment page and there on the payment provider works.

I just need to get started and somebody can guide me here hopefully. I
don't' need code or so.

Help me here.

Best regards,




-- 
Madhav Nandan
cell: 9170459494
Skype: gaurav.kumar3992

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGXYL6JYzv%3DvTRNXc1ZqSvJ-6S%3DOSJt%2B%3D_%3DhLqvwyaD0Z_NoDA%40mail.gmail.com.


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 runserver. and the error 
generated led me right to the issue. hope this helps someone.


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8d946444-912d-4de9-9c9c-c8c85c0a348e%40googlegroups.com.


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 production,
which is expected next month. So in general, the selection of which Django
version you use depends on your dependencies.

אורי
u...@speedy.net


On Thu, Mar 12, 2020 at 11:54 AM Mrinal Kamboj  wrote:

> Hello,
>
> I have just started the Python development, I am very new to the Python
> and have to select between Django versions 3.0 and 2.2, where 2.2 is LTS
> and 3.0 is current main stream.
>
> Does the current 3.0 Packages can still have the compatibility issues and
> would take some time to be stable so it would be better to choose 2.2 or is
> the 3.0 ready for the production development. and that  should be the
> choice.
>
> Kindly help with the relevant information and links.
>
> Thanks,
>
> Mrinal
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABD5YeHuZdTkrRmUAGPVQZaYZNL_m37Onw%2B%3D780-RowZSji%2BSQ%40mail.gmail.com.


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 being
able to release. We have a production environment running on 3.0.4
currently (and upgrading the other project to 3.0.4).

Also - you will probably not be finished with your project before all the
minor issues (mainly security related) will be fixed in the 3.0 branch :)

Regards,

Andréas


Den tors 12 mars 2020 kl 10:55 skrev Mrinal Kamboj :

> Hello,
>
> I have just started the Python development, I am very new to the Python
> and have to select between Django versions 3.0 and 2.2, where 2.2 is LTS
> and 3.0 is current main stream.
>
> Does the current 3.0 Packages can still have the compatibility issues and
> would take some time to be stable so it would be better to choose 2.2 or is
> the 3.0 ready for the production development. and that  should be the
> choice.
>
> Kindly help with the relevant information and links.
>
> Thanks,
>
> Mrinal
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK4qSCfFSZCCAmRq1P0gWCZh8td%3DDKxmicKHvhkRrYaXsyP_3Q%40mail.gmail.com.


New to Django to select between 3.0 and 2.2

2020-03-12 Thread Mrinal Kamboj
Hello,

I have just started the Python development, I am very new to the Python and 
have to select between Django versions 3.0 and 2.2, where 2.2 is LTS and 
3.0 is current main stream. 

Does the current 3.0 Packages can still have the compatibility issues and 
would take some time to be stable so it would be better to choose 2.2 or is 
the 3.0 ready for the production development. and that  should be the 
choice.

Kindly help with the relevant information and links.

Thanks,

Mrinal

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0d89a17b-35b8-43a3-b592-35180320bff3%40googlegroups.com.


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 messege...
> now plz tell me the next step to create a project and run and watching 
> output at the localhost:8000
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/68101164-382b-4f2e-96a8-0fc17682de62%40googlegroups.com.


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 i'm able to see congratulation messege...
> now plz tell me the next step to create a project and run and watching 
> output at the localhost:8000
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c2432f2a-87d9-4065-b30c-406bf55eb2b9%40googlegroups.com.


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 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 to see congratulation messege...
>>> now plz tell me the next step to create a project and run and watching
>>> output at the localhost:8000
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAOnqjLwzM9iokN0VAmzxLv_yYhbpSN59BGrYaNc7NpQByu%2B%3DSA%40mail.gmail.com
> 
> .
>


-- 
Thanks & Regards,
*Lokendra Singh Chouhan*,
*Software Developer  | VulpineCode Technologies*,
http://www.vulpinecode.com

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAM55b4uQD7Y66f%3DkH33y-4HwFCZn6Zi75Y6sCO1LHy%3DFxbcR2w%40mail.gmail.com.


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 Kawatra  wrote:
>
>> hello everyone ...if anybody could help me out
>> my django server is started and i'm able to see congratulation messege...
>> now plz tell me the next step to create a project and run and watching
>> output at the localhost:8000
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOnqjLwzM9iokN0VAmzxLv_yYhbpSN59BGrYaNc7NpQByu%2B%3DSA%40mail.gmail.com.


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 to see congratulation messege...
> now plz tell me the next step to create a project and run and watching
> output at the localhost:8000
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJY8mfz_etvYx68asZwps0Fqb67_arNW6ByC%3DzpFg62OEo8rgw%40mail.gmail.com.


new to django

2020-03-01 Thread Gurjot Kawatra
hello everyone ...if anybody could help me out
my django server is started and i'm able to see congratulation messege...
now plz tell me the next step to create a project and run and watching 
output at the localhost:8000

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f336394b-8fff-4893-ac04-ee5049357d85%40googlegroups.com.


New to Django need help with m2m database with intermediate table.

2020-02-24 Thread Silas Nicholls

Hello,

Sorry for my amateur question. 

I've been stuck on this issue for a while and I can't work out if there is 
way I can use my current models to work in this way.

Here is a link to my issue:

https://stackoverflow.com/questions/60223686/how-do-i-use-my-intermediate-table-to-show-the-m2m-relationship-in-my-templates

Thank you in advance.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1b173ea5-fbfc-429f-9b50-505e914f2766%40googlegroups.com.


New to Django, need help using my intermediate table to show the m2m relationship in my templates.

2020-02-24 Thread Silas Nicholls
Hello

Sorry I am very new to Django and have come across quite the stumbling 
block. The details to the issue are in this Stack Overflow post I made a 
while ago with no answers:

https://stackoverflow.com/questions/60223686/how-do-i-use-my-intermediate-table-to-show-the-m2m-relationship-in-my-templates

Thank you in advance.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/609a095c-6a5a-4ccf-9a02-5ff517871a99%40googlegroups.com.


New to Django. Trying to wrap my head around markdown to html conversion using regex

2020-02-20 Thread Joey Jo Jo Jr
Hello all,

I'm working on a class assignment, so I'm not seeking a specific 
answer/code, but I'm just trying to figure out a general process.

The task is this...

I have some markdown files located in a directory, however when running the 
website they need to be displayed as html.  Because this is a learning 
assignment, no markdown conversion libraries are allowed.

So I'm tasked with using regular expressions to convert.  I understand 
regular expressions and have already formulated a few to change things like 
**text** to text and so on, but being so new to Django and 
still figuring out how it works, I'm just completely flummoxed on the 
execution/implementation.

So any general advice would be appreciated.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4d3fe147-d502-40c2-a866-d72bb30f8352%40googlegroups.com.


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 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a6f4efee-bae9-4acd-ada9-795b8dbe67a5%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJAxQDmKQbv74jnYEuUiLAu9xxG9LReJ-TzRby78J852%3DwSHEw%40mail.gmail.com.


New to Django and Python

2020-01-05 Thread 'Dash LaLonde' via Django users
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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a6f4efee-bae9-4acd-ada9-795b8dbe67a5%40googlegroups.com.


Re: I'm very new to Django. Its possible to do the below project with Django?

2019-05-05 Thread pranayreddy788
I worked on Django from 2 years , you can use lot of Django features to
build these kind of project.
Use Django admin for faster development

Post_save and decorator are very useful for ur project. Go through these
concepts once in Django documentation

Faster and easier way Django

On May 5, 2019 at 22:12, > wrote:

Recently I've signed in my office project which is for HR department. I
want to create an admin panel and Agent view. We have a separate tool named
'PeopleSoft' In that tool somebody(agents) moved to bench it will
automatically publish on my tool and an email triggered to Supervisor(Every
agent have Supervisor{1 supervisor=20 agents}),PHR team,Program head and
Recruitment team. The admin tool will allow the recruiter to tag each bench
employee to Internal vacancy Job, when there is an interview email will be
automatically triggered to an employee. Also Interview feedback for the
employee(agents) in the same tool. If the Employee(agent) passed he will
moved to that program with Job code(Every job has a Code like 5432) If the
Employee failed he will moved back to the bench. Bench Validity period is
14 days. If Validity exceed he will lose his/her job and an email also
triggered to Supervisor, PHR, program head, Recruitment.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/cdd27aa9-e9ad-4861-bb1d-1e71b92ebd22%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANjRyE3i2h1fW%2BAB4x5XAfAahOysFQsQBV9qMHtLHNoMPpppcQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


I'm very new to Django. Its possible to do the below project with Django?

2019-05-05 Thread rocky2sdat
Recently I've signed in my office project which is for HR department. I 
want to create an admin panel and Agent view. We have a separate tool named 
'PeopleSoft' In that tool somebody(agents) moved to bench it will 
automatically publish on my tool and an email triggered to Supervisor(Every 
agent have Supervisor{1 supervisor=20 agents}),PHR team,Program head and 
Recruitment team. The admin tool will allow the recruiter to tag each bench 
employee to Internal vacancy Job, when there is an interview email will be 
automatically triggered to an employee. Also Interview feedback for the 
employee(agents) in the same tool. If the Employee(agent) passed he will 
moved to that program with Job code(Every job has a Code like 5432) If the 
Employee failed he will moved back to the bench. Bench Validity period is 
14 days. If Validity exceed he will lose his/her job and an email also 
triggered to Supervisor, PHR, program head, Recruitment.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cdd27aa9-e9ad-4861-bb1d-1e71b92ebd22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-23 Thread Rob Gmail
Yes I did

Rob 
203-671-6514
Sent from my mobile device, please excuse the typos. 

> On Apr 23, 2019, at 11:05 AM, Victor H. Velasquez Rizo 
>  wrote:
> 
> But. Did you get it to work?
> 
>> On Mon, Apr 22, 2019, 11:38 AM Robert Wahoo  wrote:
>> Actually, I found why I got that last message, was a typo on my part.
>> 
>>  
>> 
>> On to the next problem…Thank you.
>> 
>>  
>> 
>> From: "django-users@googlegroups.com"  on 
>> behalf of "Victor H. Velasquez Rizo" 
>> Reply-To: "django-users@googlegroups.com" 
>> Date: Sunday, April 21, 2019 at 9:02 PM
>> To: "django-users@googlegroups.com" 
>> Subject: Re: problems with url and views - new to django
>> 
>>  
>> 
>> Hello Rob.
>> 
>> With the url "hello/", your trying to call the "hello" function on your 
>> view.py.
>> 
>> First, you need to import "hello" to be able to use it. from  from  
>> lct_app.views import hello
>> 
>> Second, call the function. path('hello/', hello),
>> 
>>  
>> 
>> urls.py
>> 
>> from django.contrib import admin
>> 
>> from django.urls import path
>> 
>> from  lct_app.views import hello
>> 
>>  
>> 
>> urlpatterns = [
>> 
>> path('admin/', admin.site.urls),
>> 
>> path('hello/', hello),
>> 
>> ]
>> 
>>  
>> 
>> views.py
>> 
>>  
>> 
>> from django.shortcuts import render
>> 
>>  
>> 
>> def hello(request):
>> 
>>return render(request, "lct_app/templates/hello.html", {})
>> 
>>  
>> 
>> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>> 
>> setting up a new project.
>> 
>> all good, loaded up the project on localhost.
>> 
>>  
>> 
>> however, when creating a view then setting the url, it doesn't work.
>> 
>>  
>> 
>>  
>> 
>> urls.py
>> 
>>  
>> 
>> from django.contrib import admin
>> 
>> from django.urls import path
>> 
>>  
>> 
>> urlpatterns = [
>> 
>> path('admin/', admin.site.urls),
>> 
>> path('hello/', lct_app.site.urls),
>> 
>>
>> 
>>  
>> 
>> views.py
>> 
>>  
>> 
>> from django.shortcuts import render
>> 
>>  
>> 
>> def hello(request):
>> 
>>return render(request, "lct_app/templates/hello.html", {})
>> 
>>  
>> 
>> i comment out the path in urls.py, django comes back. what am i missing?
>> 
>>  
>> 
>>  
>> 
>>  
>> 
>> -- 
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> 
>> 
>>  
>> 
>> --
>> 
>> 
>> 
>> 
>> Atte...,.
>> Vìctor Hugo Velàsquez Rizo
>> Cali - Colombia
>> 
>> -- 
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> 
>> -- 
>> 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 django-users@googlegroups.com.
>> Visit this gro

Re: problems with url and views - new to django

2019-04-23 Thread Victor H. Velasquez Rizo
But. Did you get it to work?

On Mon, Apr 22, 2019, 11:38 AM Robert Wahoo  wrote:

> Actually, I found why I got that last message, was a typo on my part.
>
>
>
> On to the next problem…Thank you.
>
>
>
> *From: *"django-users@googlegroups.com" 
> on behalf of "Victor H. Velasquez Rizo" 
> *Reply-To: *"django-users@googlegroups.com"  >
> *Date: *Sunday, April 21, 2019 at 9:02 PM
> *To: *"django-users@googlegroups.com" 
> *Subject: *Re: problems with url and views - new to django
>
>
>
> *Hello Rob.*
>
> With the url "hello/", your trying to call the "hello" function on your
> view.py.
>
> *First*, you need to import "hello" to be able to use it. from  *from
> lct_app.views import hello*
>
> *Second,* call the function. path('hello/', hello),
>
>
>
> *urls.py*
>
> from django.contrib import admin
>
> from django.urls import path
>
> from  lct_app.views import hello
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', hello),
>
> ]
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>
> setting up a new project.
>
> all good, loaded up the project on localhost.
>
>
>
> however, when creating a view then setting the url, it doesn't work.
>
>
>
>
>
> *urls.py*
>
>
>
> from django.contrib import admin
>
> from django.urls import path
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', lct_app.site.urls),
>
>
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
>
>
>
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
>
>
>
>
> Atte...,.
> Vìctor Hugo Velàsquez Rizo
> Cali - Colombia
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com
> <https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzh9yhW5%3DECndL8sst4Z4FB8_YEc4EpMqWuD%3D8xLpdfS7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-23 Thread Victor H. Velasquez Rizo
Whats the structure of your project.?

On Tue, Apr 23, 2019, 7:13 AM Deepali Singh 
wrote:

> I have new to django ad i have created my project my pieshopI don't
> know how it is showing 3 folders in the app
>
> On Mon, 22 Apr 2019 at 22:08, Robert Wahoo  wrote:
>
>> Actually, I found why I got that last message, was a typo on my part.
>>
>>
>>
>> On to the next problem…Thank you.
>>
>>
>>
>> *From: *"django-users@googlegroups.com" 
>> on behalf of "Victor H. Velasquez Rizo" 
>> *Reply-To: *"django-users@googlegroups.com" <
>> django-users@googlegroups.com>
>> *Date: *Sunday, April 21, 2019 at 9:02 PM
>> *To: *"django-users@googlegroups.com" 
>> *Subject: *Re: problems with url and views - new to django
>>
>>
>>
>> *Hello Rob.*
>>
>> With the url "hello/", your trying to call the "hello" function on your
>> view.py.
>>
>> *First*, you need to import "hello" to be able to use it. from  *from
>> lct_app.views import hello*
>>
>> *Second,* call the function. path('hello/', hello),
>>
>>
>>
>> *urls.py*
>>
>> from django.contrib import admin
>>
>> from django.urls import path
>>
>> from  lct_app.views import hello
>>
>>
>>
>> urlpatterns = [
>>
>> path('admin/', admin.site.urls),
>>
>> path('hello/', hello),
>>
>> ]
>>
>>
>>
>> *views.py*
>>
>>
>>
>> from django.shortcuts import render
>>
>>
>>
>> def hello(request):
>>
>>return render(request, "lct_app/templates/hello.html", {})
>>
>>
>>
>> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>>
>> setting up a new project.
>>
>> all good, loaded up the project on localhost.
>>
>>
>>
>> however, when creating a view then setting the url, it doesn't work.
>>
>>
>>
>>
>>
>> *urls.py*
>>
>>
>>
>> from django.contrib import admin
>>
>> from django.urls import path
>>
>>
>>
>> urlpatterns = [
>>
>> path('admin/', admin.site.urls),
>>
>> path('hello/', lct_app.site.urls),
>>
>>
>>
>>
>>
>> *views.py*
>>
>>
>>
>> from django.shortcuts import render
>>
>>
>>
>> def hello(request):
>>
>>return render(request, "lct_app/templates/hello.html", {})
>>
>>
>>
>> i comment out the path in urls.py, django comes back. what am i missing?
>>
>>
>>
>>
>>
>>
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>>
>> --
>>
>>
>>
>>
>> Atte...,.
>> Vìctor Hugo Velàsquez Rizo
>> Cali - Colombia
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> You received this message because you are subscribed to t

Re: problems with url and views - new to django

2019-04-23 Thread Deepali Singh
I have new to django ad i have created my project my pieshopI don't
know how it is showing 3 folders in the app

On Mon, 22 Apr 2019 at 22:08, Robert Wahoo  wrote:

> Actually, I found why I got that last message, was a typo on my part.
>
>
>
> On to the next problem…Thank you.
>
>
>
> *From: *"django-users@googlegroups.com" 
> on behalf of "Victor H. Velasquez Rizo" 
> *Reply-To: *"django-users@googlegroups.com"  >
> *Date: *Sunday, April 21, 2019 at 9:02 PM
> *To: *"django-users@googlegroups.com" 
> *Subject: *Re: problems with url and views - new to django
>
>
>
> *Hello Rob.*
>
> With the url "hello/", your trying to call the "hello" function on your
> view.py.
>
> *First*, you need to import "hello" to be able to use it. from  *from
> lct_app.views import hello*
>
> *Second,* call the function. path('hello/', hello),
>
>
>
> *urls.py*
>
> from django.contrib import admin
>
> from django.urls import path
>
> from  lct_app.views import hello
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', hello),
>
> ]
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:
>
> setting up a new project.
>
> all good, loaded up the project on localhost.
>
>
>
> however, when creating a view then setting the url, it doesn't work.
>
>
>
>
>
> *urls.py*
>
>
>
> from django.contrib import admin
>
> from django.urls import path
>
>
>
> urlpatterns = [
>
> path('admin/', admin.site.urls),
>
> path('hello/', lct_app.site.urls),
>
>
>
>
>
> *views.py*
>
>
>
> from django.shortcuts import render
>
>
>
> def hello(request):
>
>return render(request, "lct_app/templates/hello.html", {})
>
>
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
>
>
>
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
>
>
>
>
> Atte...,.
> Vìctor Hugo Velàsquez Rizo
> Cali - Colombia
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com
> <https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANbmnTJ7NbZ5KSE-upeT8Hba4H4oTFFi_bL_7aYfPwNRQx8FGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-22 Thread Robert Wahoo
Actually, I found why I got that last message, was a typo on my part.

On to the next problem…Thank you.

From: "django-users@googlegroups.com"  on behalf 
of "Victor H. Velasquez Rizo" 
Reply-To: "django-users@googlegroups.com" 
Date: Sunday, April 21, 2019 at 9:02 PM
To: "django-users@googlegroups.com" 
Subject: Re: problems with url and views - new to django

Hello Rob.
With the url "hello/", your trying to call the "hello" function on your view.py.
First, you need to import "hello" to be able to use it. from  from  
lct_app.views import hello
Second, call the function. path('hello/', hello),

urls.py
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W 
mailto:randmwhee...@gmail.com>> wrote:
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


urls.py

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),


views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com<https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.


--



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia
--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/BL0PR01MB4354017875EE71CD3DF45828F4220%40BL0PR01MB4354.prod.exchangelabs.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-22 Thread Robert Wahoo
Awesome,Thanks Victor, I’ll give this a shot.

Thanks.


From: "django-users@googlegroups.com"  on behalf 
of "Victor H. Velasquez Rizo" 
Reply-To: "django-users@googlegroups.com" 
Date: Sunday, April 21, 2019 at 9:02 PM
To: "django-users@googlegroups.com" 
Subject: Re: problems with url and views - new to django

Hello Rob.
With the url "hello/", your trying to call the "hello" function on your view.py.
First, you need to import "hello" to be able to use it. from  from  
lct_app.views import hello
Second, call the function. path('hello/', hello),

urls.py
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W 
mailto:randmwhee...@gmail.com>> wrote:
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


urls.py

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),


views.py

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com<https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.


--



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia
--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To post to this group, send email to 
django-users@googlegroups.com<mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/BL0PR01MB43546102A2EB13B93EB26E08F4220%40BL0PR01MB4354.prod.exchangelabs.com.
For more options, visit https://groups.google.com/d/optout.


Re: problems with url and views - new to django

2019-04-21 Thread Victor H. Velasquez Rizo
*Hello Rob.*
With the url "hello/", your trying to call the "hello" function on your
view.py.
*First*, you need to import "hello" to be able to use it. from  *from
lct_app.views import hello*
*Second,* call the function. path('hello/', hello),

*urls.py*
from django.contrib import admin
from django.urls import path
from  lct_app.views import hello

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', hello),
]

*views.py*

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

On Sun, Apr 21, 2019 at 5:07 PM Rob W  wrote:

> setting up a new project.
> all good, loaded up the project on localhost.
>
> however, when creating a view then setting the url, it doesn't work.
>
>
> *urls.py*
>
> from django.contrib import admin
> from django.urls import path
>
> urlpatterns = [
> path('admin/', admin.site.urls),
> path('hello/', lct_app.site.urls),
>
>
> *views.py*
>
> from django.shortcuts import render
>
> def hello(request):
>return render(request, "lct_app/templates/hello.html", {})
>
> i comment out the path in urls.py, django comes back. what am i missing?
>
>
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 



Atte...,.
Vìctor Hugo Velàsquez Rizo
Cali - Colombia

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFCXTzga%3DFAMdPFwhfp3yMEtyZkA7rzmjhB29rAG160ALuP3Og%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


problems with url and views - new to django

2019-04-21 Thread Rob W
setting up a new project.
all good, loaded up the project on localhost.

however, when creating a view then setting the url, it doesn't work.


*urls.py*

from django.contrib import admin
from django.urls import path

urlpatterns = [
path('admin/', admin.site.urls),
path('hello/', lct_app.site.urls),
   

*views.py*

from django.shortcuts import render

def hello(request):
   return render(request, "lct_app/templates/hello.html", {})

i comment out the path in urls.py, django comes back. what am i missing?



-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4872beca-597c-4689-a12e-9e888c5266ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 at 11:24:32 PM UTC+5:30, elddi...@gmail.com 
wrote:
>
> 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 
> 'django-admin 
> startproject mysite'. The output says command not found. I've tried 
> troubleshooting but haven't had any luck so far. Any assistance is much 
> appreciated. 
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6588ab93-29b4-4791-8a4a-1597b9ceac64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 create the project using 
>> 'django-admin
>> startproject mysite'. The output says command not found. I've tried
>> troubleshooting but haven't had any luck so far. Any assistance is much
>> appreciated.
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACem%2B%2BXdzWOOnJq5QyZjGuFmhNxLPJYPo_K1%2Bod%2BmJ%3DcTUBkig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 create the project using 
>> 'django-admin
>> startproject mysite'. The output says command not found. I've tried
>> troubleshooting but haven't had any luck so far. Any assistance is much
>> appreciated.
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKWYn%3DE8BB%3DZ-nRa398MVhKHL6efd-jyPtZfZAbaUiUjj6kvXw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 create the project using 
> 'django-admin
> startproject mysite'. The output says command not found. I've tried
> troubleshooting but haven't had any luck so far. Any assistance is much
> appreciated.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMEZma9fAWn%3DzToF-DF%2B4KyRZjEH_KYAc2_rThE8jcVt2gPQNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 
> 'django-admin
> startproject mysite'. The output says command not found. I've tried
> troubleshooting but haven't had any luck so far. Any assistance is much
> appreciated.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJRs1QhF-iu%3D1gLW5AXp5%3DXEPgWShk%3DpZ3APEjROgYB6VsdBfA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


New to Django

2018-12-15 Thread elddirmmot
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 
'django-admin 
startproject mysite'. The output says command not found. I've tried 
troubleshooting but haven't had any luck so far. Any assistance is much 
appreciated. 

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b2057d6f-270c-4916-bf6d-da1cbf4e7c87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-11-02 Thread William Vincent
Well I'm biased but add Django for Beginners 
<https://djangoforbeginners.com/> to the mix too. Also Django Girls 
<https://tutorial.djangogirls.org/en/>is a great first step.

On Monday, October 22, 2018 at 8:02:01 AM UTC-4, Lokendar Singh wrote:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/300fb8f7-39e2-4cec-b7d9-47953b244bc0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 fields...  I can't save them using  the django form..
>
> On Tue, Oct 30, 2018, 7:49 AM Manjunath  wrote:
>
>> 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 form.is_valid():
>>new_user = form.save(commit=False)
>>new_user.set_password(form.cleaned_data['password1'])
>>   new_user.save()
>>   # Your next steps
>>
>>
>> I think you might need to declare password1 & password2 fields in your
>> Form. Do Check.
>>
>>
>>
>> On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma
>> wrote:
>>>
>>> Hello,
>>>
>>> I am new to Django and enjoying the learning process, unfortunately I am
>>> stuck, and I need expert guidance.
>>> I am learning through developing a User Authentication System. The
>>> system is supposed to have a user registration functionality, login, user
>>> profile editing and logout. I have managed to create the login, logout
>>> functionalities and the registration functionality partly. The problem is
>>> on the registration, I am only able to save the 'username and password '
>>> using django forms, I have written the code for saving the first_name and
>>> the last _name as well as email but it seems not to be working, only the
>>> 'username and password' are saved.. I think I am missing something though
>>> no error comes up. Please anyone to guide me. Thank you.
>>> the code is as shown below:
>>>
>>>
>>> views.py
>>> from django.shortcuts import render, redirect
>>> from django.contrib.auth import authenticate, login, logout
>>> from django.contrib.auth.models import User
>>> from django.contrib import auth, messages
>>> from django.contrib.auth.forms import UserCreationForm
>>> from django import forms
>>> from .forms import SignUpForm
>>>
>>> def home(request):
>>> return render(request, 'authenticate/home.html', {})
>>>
>>> def login_user(request):
>>> if request.method == 'POST':
>>> username = request.POST['username']
>>> password = request.POST['password']
>>> user = authenticate(request, username=username, password=password)
>>> if user is not None:
>>> login(request, user)
>>> messages.success(request,('You have been logged in'))
>>> return redirect('home')
>>> else:
>>> messages.success(request,('Error Logging in!'))
>>> return redirect('login')
>>> else:
>>> return render(request, 'authenticate/login.html', {})
>>>
>>> def logout_user(request):
>>> """if request.method =='POST':"""
>>> logout(request)
>>> messages.success(request,('You have been logged out'))
>>> return redirect('home')
>>>
>>> def register_user(request):
>>> if request.method =='POST':
>>> form = SignUpForm(request.POST)
>>> if form.is_valid():
>>> form.save()
>>> username = form.cleaned_data['username']
>>> password = form.cleaned_data['password1']
>>> user = authenticate(username=username, password=password)
>>> login(request, user)
>>> messages.success(request,(' Successfully Registered!'))
>>> return redirect('home')
>>> else:
>>> form = SignUpForm()
>>>
>>> context = {'form': form }
>>> return render(request, 'authenticate/register.html', context)
>>>
>>> urls.py
>>>
>>> from django.urls import path
>>> from . import views
>>> urlpatterns = [
>>> path(''

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 fields...  I can't save them using  the django form..

On Tue, Oct 30, 2018, 7:49 AM Manjunath  wrote:

> 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 form.is_valid():
>new_user = form.save(commit=False)
>new_user.set_password(form.cleaned_data['password1'])
>   new_user.save()
>   # Your next steps
>
>
> I think you might need to declare password1 & password2 fields in your
> Form. Do Check.
>
>
>
> On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma
> wrote:
>>
>> Hello,
>>
>> I am new to Django and enjoying the learning process, unfortunately I am
>> stuck, and I need expert guidance.
>> I am learning through developing a User Authentication System. The system
>> is supposed to have a user registration functionality, login, user profile
>> editing and logout. I have managed to create the login, logout
>> functionalities and the registration functionality partly. The problem is
>> on the registration, I am only able to save the 'username and password '
>> using django forms, I have written the code for saving the first_name and
>> the last _name as well as email but it seems not to be working, only the
>> 'username and password' are saved.. I think I am missing something though
>> no error comes up. Please anyone to guide me. Thank you.
>> the code is as shown below:
>>
>>
>> views.py
>> from django.shortcuts import render, redirect
>> from django.contrib.auth import authenticate, login, logout
>> from django.contrib.auth.models import User
>> from django.contrib import auth, messages
>> from django.contrib.auth.forms import UserCreationForm
>> from django import forms
>> from .forms import SignUpForm
>>
>> def home(request):
>> return render(request, 'authenticate/home.html', {})
>>
>> def login_user(request):
>> if request.method == 'POST':
>> username = request.POST['username']
>> password = request.POST['password']
>> user = authenticate(request, username=username, password=password)
>> if user is not None:
>> login(request, user)
>> messages.success(request,('You have been logged in'))
>> return redirect('home')
>> else:
>> messages.success(request,('Error Logging in!'))
>> return redirect('login')
>> else:
>> return render(request, 'authenticate/login.html', {})
>>
>> def logout_user(request):
>> """if request.method =='POST':"""
>> logout(request)
>> messages.success(request,('You have been logged out'))
>> return redirect('home')
>>
>> def register_user(request):
>> if request.method =='POST':
>> form = SignUpForm(request.POST)
>> if form.is_valid():
>> form.save()
>> username = form.cleaned_data['username']
>> password = form.cleaned_data['password1']
>> user = authenticate(username=username, password=password)
>> login(request, user)
>> messages.success(request,(' Successfully Registered!'))
>> return redirect('home')
>> else:
>> form = SignUpForm()
>>
>> context = {'form': form }
>> return render(request, 'authenticate/register.html', context)
>>
>> urls.py
>>
>> from django.urls import path
>> from . import views
>> urlpatterns = [
>> path('', views.home, name="home"),
>> path('login/', views.login_user, name="login"),
>> path('logout/', views.logout_user, name='logout'),
>> path('register/', views.register_user, name='register'),
>> ]
>>
>> forms.py
>> from django.contrib.auth.forms import UserCreationForm, UserChangeForm
>> from django.contrib.auth.models import User
>> from django import forms
>>
>> class SignUpForm(UserCreationForm):
>> email = forms.

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 form.is_valid():
   new_user = form.save(commit=False)
   new_user.set_password(form.cleaned_data['password1'])
  new_user.save()
  # Your next steps


I think you might need to declare password1 & password2 fields in your 
Form. Do Check.



On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma wrote:
>
> Hello, 
>
> I am new to Django and enjoying the learning process, unfortunately I am 
> stuck, and I need expert guidance. 
> I am learning through developing a User Authentication System. The system 
> is supposed to have a user registration functionality, login, user profile 
> editing and logout. I have managed to create the login, logout 
> functionalities and the registration functionality partly. The problem is 
> on the registration, I am only able to save the 'username and password ' 
> using django forms, I have written the code for saving the first_name and 
> the last _name as well as email but it seems not to be working, only the 
> 'username and password' are saved.. I think I am missing something though 
> no error comes up. Please anyone to guide me. Thank you.
> the code is as shown below:
>
>
> views.py
> from django.shortcuts import render, redirect
> from django.contrib.auth import authenticate, login, logout
> from django.contrib.auth.models import User
> from django.contrib import auth, messages
> from django.contrib.auth.forms import UserCreationForm
> from django import forms
> from .forms import SignUpForm
>
> def home(request):
> return render(request, 'authenticate/home.html', {})
>
> def login_user(request):
> if request.method == 'POST':
> username = request.POST['username']
> password = request.POST['password']
> user = authenticate(request, username=username, password=password)
> if user is not None:
> login(request, user)
> messages.success(request,('You have been logged in'))
> return redirect('home')
> else:
> messages.success(request,('Error Logging in!'))
> return redirect('login')
> else:
> return render(request, 'authenticate/login.html', {})
>
> def logout_user(request):
> """if request.method =='POST':"""
> logout(request)
> messages.success(request,('You have been logged out'))
> return redirect('home')
>
> def register_user(request):
> if request.method =='POST':
> form = SignUpForm(request.POST)
> if form.is_valid():
> form.save()
> username = form.cleaned_data['username']
> password = form.cleaned_data['password1']
> user = authenticate(username=username, password=password)
> login(request, user)
> messages.success(request,(' Successfully Registered!'))
> return redirect('home')
> else:
> form = SignUpForm()
>
> context = {'form': form }
> return render(request, 'authenticate/register.html', context)
>
> urls.py
>
> from django.urls import path
> from . import views
> urlpatterns = [
> path('', views.home, name="home"),
> path('login/', views.login_user, name="login"),
> path('logout/', views.logout_user, name='logout'),
> path('register/', views.register_user, name='register'),
> ]
>
> forms.py
> from django.contrib.auth.forms import UserCreationForm, UserChangeForm
> from django.contrib.auth.models import User
> from django import forms
>
> class SignUpForm(UserCreationForm):
> email = forms.EmailField()
> first_name = forms.CharField(max_length=100,)
> last_name = forms.CharField(max_length=100,)
> class meta():
> model = User 
> fields = ('username', 'first_name', 'last_name', 'email', 'password1', 
> 'password2', )
>
> register.html
> {% extends 'authenticate/base.html'%}
> {% block content%}
> This is the Registration Page
> 
> {% csrf_token %}
> {% if form.errors %}
> Your form has errors
> {{ error }}
> {% endif %}
> 
> {{ form.as_p }}
> 
> 
> 
> 
> {% endblock %}
>
>
> Chao!
>
> Adrian
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9a58de45-95d1-4fc6-8948-0cc6994c85fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-10-29 Thread Adrian Chipukuma
Hello,

I am new to Django and enjoying the learning process, unfortunately I am
stuck, and I need expert guidance.
I am learning through developing a User Authentication System. The system
is supposed to have a user registration functionality, login, user profile
editing and logout. I have managed to create the login, logout
functionalities and the registration functionality partly. The problem is
on the registration, I am only able to save the 'username and password '
using django forms, I have written the code for saving the first_name and
the last _name as well as email but it seems not to be working, only the
'username and password' are saved.. I think I am missing something though
no error comes up. Please anyone to guide me. Thank you.
the code is as shown below:


views.py
from django.shortcuts import render, redirect
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.models import User
from django.contrib import auth, messages
from django.contrib.auth.forms import UserCreationForm
from django import forms
from .forms import SignUpForm

def home(request):
return render(request, 'authenticate/home.html', {})

def login_user(request):
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
user = authenticate(request, username=username, password=password)
if user is not None:
login(request, user)
messages.success(request,('You have been logged in'))
return redirect('home')
else:
messages.success(request,('Error Logging in!'))
return redirect('login')
else:
return render(request, 'authenticate/login.html', {})

def logout_user(request):
"""if request.method =='POST':"""
logout(request)
messages.success(request,('You have been logged out'))
return redirect('home')

def register_user(request):
if request.method =='POST':
form = SignUpForm(request.POST)
if form.is_valid():
form.save()
username = form.cleaned_data['username']
password = form.cleaned_data['password1']
user = authenticate(username=username, password=password)
login(request, user)
messages.success(request,(' Successfully Registered!'))
return redirect('home')
else:
form = SignUpForm()

context = {'form': form }
return render(request, 'authenticate/register.html', context)

urls.py

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name="home"),
path('login/', views.login_user, name="login"),
path('logout/', views.logout_user, name='logout'),
path('register/', views.register_user, name='register'),
]

forms.py
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth.models import User
from django import forms

class SignUpForm(UserCreationForm):
email = forms.EmailField()
first_name = forms.CharField(max_length=100,)
last_name = forms.CharField(max_length=100,)
class meta():
model = User
fields = ('username', 'first_name', 'last_name', 'email', 'password1',
'password2', )

register.html
{% extends 'authenticate/base.html'%}
{% block content%}
This is the Registration Page

{% csrf_token %}
{% if form.errors %}
Your form has errors
{{ error }}
{% endif %}

{{ form.as_p }}




{% endblock %}


Chao!

Adrian

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHBk_LKtZ7VP1BrKv_HFYckBAqM%2BMWwjv5WJKjx9bpYkNLd3tw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/843b5648-de8b-49a7-99da-965a1c64e871%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALkhXJUwwL8GZTnGn6FfAm1GxWEhqkqsyRR%2Bsc4CXbvVRnVdQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 to do?
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/843b5648-de8b-49a7-99da-965a1c64e871%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO73PDoE41eBESrZ_gwmhddStkV_OaZ8_OY6CX6t-_Hh7AsVBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 now
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALpJ3u%2Bpcqad6Mz3%2B4Tk_XSxjNOfFg2cZfNhNn93x-KvF5Tcmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 ustedes permanecen unidos a mí, y si permanecen fieles a mis
enseñanzas, pidan lo que quieran y se les dará.
(Juan 15:7 DHH)
Bendito el varón que se fía en el SEÑOR, y cuya confianza es el SEÑOR.
(Jeremías 17:7 RV2000)



El mié., 24 oct. 2018 a las 8:35, Aditya Bohra ()
escribió:

>
>
> 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 now
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMQeQjZRi_rnCmT2RHoVDnjLrWVb2pmnc-XuiNhSLgXbKDM2cg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 now

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/64032c27-c402-4f42-8530-12b2ca56ad5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread manu . pascual . luna
I don't know if it's the best book but I'm enjoying 
http://www.obeythetestinggoat.com. I like 
the 
 

 TDD approach for learning a new technology. Also you can read it for free 
online.


El lunes, 22 de octubre de 2018, 14:02:01 (UTC+2), Lokendar Singh escribió:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d3b9f7cb-8379-413b-b626-0eb06f12b2c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread Joel
If you don't know python, spend time on basic language and structure before
starting django. The python documentation has a good tutorial. The courses
on udemy are good.
For learning django, the official django tutorial set is sufficient.

On Mon, 22 Oct, 2018, 5:31 PM Lokendar Singh,  wrote:

> Hi Community,
>
> I'm new to django and python, however I've experience in development.
>
> Can someone suggest me the best book/content/tutor to enhance my skills as
> a lead developer?
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw_-40gpfeikRpix22a0VUSYzzNk6pM5der%2BZVzqZztOCqw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to start - New to Django and Python

2018-10-22 Thread Mo-rema07
I have found The Django Book <https://djangobook.com/> to be a very good 
book to get a handle of Djangoa and it's philosophy.

On Monday, October 22, 2018 at 2:02:01 PM UTC+2, Lokendar Singh wrote:
>
> Hi Community,
>
> I'm new to django and python, however I've experience in development. 
>
> Can someone suggest me the best book/content/tutor to enhance my skills as 
> a lead developer? 
> Currently I'm going through django documentation.
>
>
> Thanks in advance!
> Lokendar 
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3e0a9b82-84f4-4578-b09f-6e7e711c03d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Where to start - New to Django and Python

2018-10-22 Thread Lokendar Singh
Hi Community,

I'm new to django and python, however I've experience in development. 

Can someone suggest me the best book/content/tutor to enhance my skills as 
a lead developer? 
Currently I'm going through django documentation.


Thanks in advance!
Lokendar 

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0c69fb3c-1ddf-4781-b94c-d3c28faefb71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 
 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 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
 startproject projectname
 >>
 >> 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?
 >>
 >> --
 >> 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 django-users@googlegroups.com.
 >> Visit this group at https://groups.google.com/group/django-users.
 >> To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
 .
 >> For more options, visit https://groups.google.com/d/optout.
 >
 > --
 > 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 django-users@googlegroups.com.
 > Visit this group at https://groups.google.com/group/django-users.
 > To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com
 .
 > For more options, visit https://groups.google.com/d/optout.

 --
 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 django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> 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 django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 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 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 
> 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 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 startproject projectname
> >>
> >> 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?
> >>
> >> --
> >> 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 django-users@googlegroups.com.
> >> Visit this group at https://groups.google.com/group/django-users.
> >> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
> .
> >> For more options, visit https://groups.google.com/d/optout.
> >
> > --
> > 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 django-users@googlegroups.com.
> > Visit this group at https://groups.google.com/group/django-users.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com
> .
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 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 django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> 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 django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com
>>> 
>>> .
>>> For more options

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 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:
>>> >>
>>> >> 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
>>> startproject projectname
>>> >>
>>> >> 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?
>>> >>
>>> >> --
>>> >> 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 django-users@googlegroups.com.
>>> >> Visit this group at https://groups.google.com/group/django-users.
>>> >> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
>>> .
>>> >> For more options, visit https://groups.google.com/d/optout.
>>> >
>>> > --
>>> > 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 django-users@googlegroups.com.
>>> > Visit this group at https://groups.google.com/group/django-users.
>>> > To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com
>>> .
>>> > For more options, visit https://groups.google.com/d/optout.
>>>
>>> --
>>> 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 django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visi

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 
>> 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 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
>> startproject projectname
>> >>
>> >> 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?
>> >>
>> >> --
>> >> 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 django-users@googlegroups.com.
>> >> Visit this group at https://groups.google.com/group/django-users.
>> >> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
>> .
>> >> For more options, visit https://groups.google.com/d/optout.
>> >
>> > --
>> > 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 django-users@googlegroups.com.
>> > Visit this group at https://groups.google.com/group/django-users.
>> > To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com
>> .
>> > For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw_-2KmLfdBm5AiAVXht%2Bg2Z7BwBBRi860RxMtfdVBCCirw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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:
> >>
> >> 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
> startproject projectname
> >>
> >> 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?
> >>
> >> --
> >> 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 django-users@googlegroups.com.
> >> Visit this group at https://groups.google.com/group/django-users.
> >> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
> .
> >> For more options, visit https://groups.google.com/d/optout.
> >
> > --
> > 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 django-users@googlegroups.com.
> > Visit this group at https://groups.google.com/group/django-users.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com
> .
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gjNJKfscLSJx13YeK1vRVvhCVnqPB3btX-Y%2B8YPHBQRhw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 
>> 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 
>> startproject projectname
>>
>> 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?
>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw__1eS_JFh_X82v27%3DiDbt7cq4cy_yqSh6UeEO7x6ZGR%3DA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 located in desktop then use cmd in cmd prompt 'cd
> desktop' then create your project by using the command ;django-admin
> startproject projectname
>
> 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?
>>
>> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gi8y61x_XXgdM95P0BkQEp5-sLBdAC4qBn8jkjDbYy4cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/291cb631-701e-4109-9ab5-c0bdacb0e303%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gjO%2Bdnk%2B5zu8e2yCpD-wpVd4MRZmPJ5vh0KecPdeFJz4w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 
startproject projectname

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?
>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d5574242-bfa6-4d42-a74c-18cab55b296a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACMqkY%2B5AnAu1qgoMpzvuiqXo0r8p_PrdpbA9qiE_%3DqPKvAgJw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


new to django

2018-10-18 Thread Vivek Jha
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 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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/291cb631-701e-4109-9ab5-c0bdacb0e303%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


new to django

2018-10-18 Thread Vivek Jha
1. virtualenv environmentname
2. cd environmentname
3. Scripts\activate #to activate environment
4. pip3 install dango==2.1
5. django-admin startproject projectname
6. cd projectname
7. Python manage.py runserver

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/801799d2-9dd3-458d-af81-a71b60847ae1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gg7C3nLMr5o-KHn5QtSWCQ7O3hZxDsBSM4gN0VBmurZ2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/359e2b8a-fc18-4c22-870a-27713f73768c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 list this 
> project in app.
>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/685f2173-396b-4130-8d1d-1f2ecec7fcb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 project pls help me..
>>
>> On Thu 18 Oct, 2018, 3:19 PM Dilip Krishna, <
>> dilipkrishna.adap...@gmail.com> wrote:
>>
>>> 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 django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gg%3DoJ7T-%2BrFwr5hgeVM0nQg2YJVHZy5WF3-rxzp9EXDpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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, <
>>> dilipkrishna.adap...@gmail.com> wrote:
>>>
 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 django-users+unsubscr...@googlegroups.com.
 To post to this group, send email to django-users@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>> 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 django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57ggOFhk577DxozHqMYpU2NyLdD%3DHVtzu61Tr1Z7CzQOwgA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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, <
>> dilipkrishna.adap...@gmail.com> wrote:
>>
>>> 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 django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57giS1TTJao_jYAE%2BDvyZ38%2B3TeOqNZTDLZkmq3w28sj4bA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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, <
> dilipkrishna.adap...@gmail.com> wrote:
>
>> 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 django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANwgZcbYv6UkOY-vTLv%3DeGB2AyZ%2Bdz8mrEUSocg%2BQWdxDF94cw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT57gj%3DdtiGsah4d_zJZ2XYkVO3UKGOUFJ6x_dGZs0KQ96_%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c5f1cb03-3d6c-41b5-9d9f-f32dbd3f14d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/843b5648-de8b-49a7-99da-965a1c64e871%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 from your device, the designed pages)
> are connected together.
>
> I am also a slightly experienced beginner. ; ) Django 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 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 from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/d76a9509-64ef-49be-abc1-225a5f73dfdc%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/d76a9509-64ef-49be-abc1-225a5f73dfdc%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALJixFwRBkHF%2BXpvxy3eJ%3D4m7P_2gu-0TDpciq9VhSnScJ-0aQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CALJixFwRBkHF%2BXpvxy3eJ%3D4m7P_2gu-0TDpciq9VhSnScJ-0aQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMoLkiEED60_goeDF%3DmBDHLCRVM0bfjA_Wt76_yv2q2_9jv9fA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 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 from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d76a9509-64ef-49be-abc1-225a5f73dfdc%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/d76a9509-64ef-49be-abc1-225a5f73dfdc%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALJixFwRBkHF%2BXpvxy3eJ%3D4m7P_2gu-0TDpciq9VhSnScJ-0aQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d76a9509-64ef-49be-abc1-225a5f73dfdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 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 django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/18094a65-7e19-4f8d-8376-69174ee4c4cb%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHn91of30tRAxzZvnvDCL1u5PE9MLAaLXiV24eXnYvqjNZUDsA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAzT%2Bs6Xi5f5PNoEPsJUqL1wpUWqwe%3DW9mz-K5Gw4ZnvYJAN2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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
> framework. I have ubuntu platform in my comuputer. I want installation
> steps for django and example also .. Can you help me?
>
> --
> 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/18094a65-7e19-4f8d-8376-69174ee4c4cb%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHn91of30tRAxzZvnvDCL1u5PE9MLAaLXiV24eXnYvqjNZUDsA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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,
>  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 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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8e997707-26f8-4fb2-9aec-641a289c75fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/18094a65-7e19-4f8d-8376-69174ee4c4cb%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAA%3Diw_-FGJGPxcEgQjoVvFpRVqAi1aJgun%3DJqw0bKr0b7cKw4A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/18094a65-7e19-4f8d-8376-69174ee4c4cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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
>
>
> On Tue, Aug 28, 2018 at 5:05 PM nonofo kokotetso <
> nonofokokote...@gmail.com> wrote:
>
>> 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 django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/3830c5d5-b063-4af3-9371-9ac8a54744dc%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPG7oKOD1xcxsMdGeDr1qA%3D44Oh6TV0TPE_uMc_6TC7nQwYEUg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3830c5d5-b063-4af3-9371-9ac8a54744dc%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPG7oKNhTwBKWj6sYQfODW8Zm0%3DnrqXUDMzwYQdZp--Qv4NsLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3830c5d5-b063-4af3-9371-9ac8a54744dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/794119ab-da2d-4288-96db-12160ab97360%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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, March 30, 2018 at 12:21:03 AM UTC+5:30, Bryan Zimmer wrote:
>
> 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 and mod_wsgi. 4.6.3:
>
> Page not found (404) 
> Request Method: GET 
> Request URL: http://localhost:8000/ 
>
> Using the URLconf defined in pollapp.urls, Django tried these URL 
> patterns, in this order: 
>
>1. polls/ 
>2. admin/ 
>
> The empty path didn't match any of these. 
>
> You're seeing this error because you have DEBUG = True in your Django 
> settings file. Change that to False, and Django will display a standard 
> 404 page. 
>
>
> Here is my pollap.urls:
>
>
> --
>
> $ cat urls.py
>
>
> """pollapp URL Configuration
>
> The `urlpatterns` list routes URLs to views. For more information please 
> see:
> https://docs.djangoproject.com/en/2.0/topics/http/urls/
> Examples:
> Function views
> 1. Add an import:  from my_app import views
> 2. Add a URL to urlpatterns:  path('', views.home, name='home')
> Class-based views
> 1. Add an import:  from other_app.views import Home
> 2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
> Including another URLconf
> 1. Import the include() function: from django.urls import include, path
> 2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
> """
> from django.contrib import admin
> from django.urls import include, path
>
> urlpatterns = [
> path('polls/',include('polls.urls')),
> path('admin/', admin.site.urls),
> ]
>
> ---
> The other relevant files, which I edited myself, following along with 
> Tutorial01 are included as attachments.
>
>
> I have scoped and squinted, and it still looks to me as though I didn't 
> make any mistakes in editing the source code. 
>
> If I missed something, I'll be embarrassed, but I think I followed the 
> instructions entirely the way they were written.
>
>
>

-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d6f29157-6ca2-47cc-bef0-9f007f436bff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 and mod_wsgi. 4.6.3:

Page not found (404) 
Request Method: GET 
Request URL: http://localhost:8000/ 

Using the URLconf defined in pollapp.urls, Django tried these URL patterns, 
in this order: 

   1. polls/ 
   2. admin/ 

The empty path didn't match any of these. 

You're seeing this error because you have DEBUG = True in your Django 
settings file. Change that to False, and Django will display a standard 404 
page. 


Here is my pollap.urls:

--

$ cat urls.py


"""pollapp URL Configuration

The `urlpatterns` list routes URLs to views. For more information please 
see:
https://docs.djangoproject.com/en/2.0/topics/http/urls/
Examples:
Function views
1. Add an import:  from my_app import views
2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
1. Add an import:  from other_app.views import Home
2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import include, path

urlpatterns = [
path('polls/',include('polls.urls')),
path('admin/', admin.site.urls),
]
---
The other relevant files, which I edited myself, following along with 
Tutorial01 are included as attachments.


I have scoped and squinted, and it still looks to me as though I didn't 
make any mistakes in editing the source code. 

If I missed something, I'll be embarrassed, but I think I followed the 
instructions entirely the way they were written.


-- 
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 django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2bf99879-93ea-41cd-ae3a-d7b894fcd9d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
from django.urls import path
from . import views


urlpatterns = [
path('', views.index, name='index')
]

from django.shortcuts import render
from django.http import HttpResponse

# Create your views here.


def index(request):
return HttpResponse("Hello, world. You're at the polls index.")



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:
>>
>> 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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/50aa7f23-851b-4554-b014-ec812c7d1d1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   3   4   >