Merry Xmass

2015-12-24 Thread Andrea Mucci
Merry Xmass to all and all your family Have a good djangoized new year -- 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.

Display the form errors in the django template with ajax post

2015-12-24 Thread Robin Lery
I have a contact form through which users would be able to contact me. I am using django with ajax, and it works fine *if* there's no error. I would like to show the errors if there's any like it displays above the input fields and not just the errors, but both the input and the errors. It does how

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
Just for testing, I downgraded django to 1.8.4 # pip-3.4 install Django==1.8.4 You are using pip version 6.1.1, however version 7.1.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Collecting Django==1.8.4 Downloading Django-1.8.4-py2.py3-none-any.wh

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
$ pip freeze Django==1.9 django-bootstrap3==6.2.2 django-debug-toolbar==1.4 django-rest-swagger==0.3.4 djangorestframework==3.3.2 djangorestframework-recursive==0.1.1 jsonpickle==0.9.2 PyYAML==3.11 requests==2.9.1 sqlparse==0.1.18 -- You received this message because you are subscrib

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
Tim, I tried with --nothreading and I get the same error. $ python3.4 manage.py runserver --nothreading 0.0.0.0:8000 Traceback (most recent call last): File "manage.py", line 10, in execute_from_command_line(sys.argv) File "/home/ctippur/db/db_virtual/local/lib/python3.4/site-packa

Re: pip install django

2015-12-24 Thread Tim Graham
There was a bug in pypi earlier today. On Thursday, December 24, 2015 at 9:50:09 AM UTC-5, Gil wrote: > > Same problem from EU. > > On Thursday, December 24, 2015 at 3:10:15 PM UTC+1, john...@gmail.com > wrote: >> >> Is failing from several machines this morning. >> >> >pip install django --upgr

Re: django 1.9 - application does not

2015-12-24 Thread Tim Graham
There's a bug in Django 1.9 that hides the actual exception when you use runserver. Try adding runserver --nothreading to see the actual exception. It will be fixed in Django 1.9.1 which will likely be released next week. On Thursday, December 24, 2015 at 10:23:03 AM UTC-5, Sergiy Khohlov wrote:

Re: django 1.9 - application does not

2015-12-24 Thread Sergiy Khohlov
I've had a similar problem. And use next way to solve: 1) Create new project at the new directory and verify that Django 1.9 is OK 2) Check (compare ) setting related to the TEMPLATE in setting.py file 3) Disable installed add modules At this step I detected that django-debug-toolbar a

Re: pip install django

2015-12-24 Thread Gil
Same problem from EU. On Thursday, December 24, 2015 at 3:10:15 PM UTC+1, john...@gmail.com wrote: > > Is failing from several machines this morning. > > >pip install django --upgrade > Collecting django > Could not find a version that satisfies the requirement django (from > versions: ) > No ma

Re: pip install django

2015-12-24 Thread Bill Blanchard
I am experiencing this as well. On Thu, Dec 24, 2015 at 9:08 AM, wrote: > Is failing from several machines this morning. > > >pip install django --upgrade > Collecting django > Could not find a version that satisfies the requirement django (from > versions: ) > No matching distribution found for

Re: pip install django

2015-12-24 Thread AJ Abrahamsen
I don't know if it matters but I usually do pip upgrades this way: pip install --upgrade 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+unsu

pip install django

2015-12-24 Thread john . furr
Is failing from several machines this morning. >pip install django --upgrade Collecting django Could not find a version that satisfies the requirement django (from versions: ) No matching distribution found for django Anyone have any thoughts about this? This is from USA east coast. -- You r

Re: How to serve a static file with django?

2015-12-24 Thread cquptzzq
This problem has troubled me also. In the DJANGO PROJECT website, they said " we want you to put static files on web server instead of using local directories " So,why not? Just drop it on the web server, and then use the http url to load images or css. 在 2015年12月23日星期三 UTC+8下午7:50:52,Dan Bikle写

Re: django 1.9 - application does not

2015-12-24 Thread AJ Abrahamsen
This person had a similar problem. Hopefully this can give you some clue to help fix your issue: http://stackoverflow.com/questions/26276397/django-1-7-upgrade-error-appregistrynotready-apps-arent-loaded-yet -- You received this message because you are subscribed to the Google Groups "Django

Re: TemplateDoesNotExist Again

2015-12-24 Thread cquptzzq
Maybe there is a trouble in settings.py. Maybe you got a wrong template dirs. You can try that way. 在 2015年12月21日星期一 UTC+8下午10:06:47,Arindam Pradhan写道: > > Hi I am new to django community, I want to file a bug regarding a > problem similar to this >