python manage.py runserver is throwing error in windows

2019-01-16 Thread Imran
Hi, I have installed Django 1.11.7 in my windows 7 machine. I am getting the following error when i run python manage.py runserver. Is there a workaround to fix it? Unhandled exception in thread started by .wrapper at 0x033EA9C0> Traceback (most recent call last): File

attribute error

2018-08-28 Thread Imran Sharief
hi every one i am new to django am getting attribute error past from 2 days i got stuck in this error only i have attached the file also plz do help me to resolve this error -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

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

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

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

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

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

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

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

2018-08-01 Thread imran
I want to write a api when form submit a sms should go to the phone, I don't know how to do that can somone help me regarding this? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Intregration Of on form submit user recive a sms in his phone

2018-07-31 Thread imran
How to impement this feature Intregration Of on form submit user recive a sms in his phone. -- 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 Session timeout limit clarification

2012-01-27 Thread Imran Azad
I just want to clarify session timeout in Django. The default timeout is two weeks, if a user keeps on accessing a website within the two weeks, will it ever expire? I'm assuming that each time a user accesses the website the session timeout resets back to two weeks, is this correct? -- You