Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django 1.7 on mod-wsgi needs apache restart whenever there is an error | Apache Help Blog
If there is an error that prevents Django loading in the first place (e.g. an import error), and then I correct the issue, I have to restart Apache. If I just touch wsgi.py, I get the following error in the Apache log when attempting to visit the site: -
Django data migration tool
-
Welcome to pytest-django’s documentation! — pytest-django 2.8.0 documentation
-
logging - How to disable Django's invalid HTTP_HOST error? - Stack Overflow
You shouldn't be ignoring this error. Instead you should be denying the request before it reaches your Django backend. To deny requests with no HOST set you can use SetEnvIfNoCase Host .+ VALID_HOST Order Deny,Allow Deny from All Allow from env=VALID_HOST or force the match to a particular domain (example.com) SetEnvIfNoCase Host example\.com VALID_HOST Order Deny,Allow Deny from All Allow from env=VALID_HOST -
Mastering Django - The NEW Django Book
"Mastering Django: Core could be considered an unofficial 3rd edition of the Django Book ..." -
Why I switched to Node.js - Bearfruit
-
ArunRocks - Edge v2.0 - More Edgy Ideas framework for django projects
-
Oops! by Curtis Maloney
easy errors to make in python/django -
What's the best Django app to use for sending Apple push notifications? : django
-
How to Make Django's ALLOWED_HOSTS work with AWS ELB Health Checks — dryan
-
AKA the NEW Django Book!
Mastering Django: Core is a completely revised and updated version of the Django Book – first published by Apress in 2007 as “The Definitive Guide to Django: Web Development Done Right” and then republished as ‘The Django Book’ by the original authors in 2009. -
rosarior/awesome-django
-
multilingual - How to remove the language identifier from django-cms 2.4 URLs? - Stack Overflow
-
How do I do a not equal in Django queryset filtering? - Stack Overflow
It's easy to create a custom lookup with Django 1.7. There's an __ne lookup example in Django official documentation. You need to create the lookup itself first: -
Juan Chacon Free Software and Education Project: Installing Django CMS on Ubuntu 14.04
-
mozilla/sugardough
web app template for django. looks very thorough -
frankwiles/django-app-metrics
-
Creating Conditionally Required Fields in Django Forms
To improve usability, you sometimes what to hide form fields from users unless they answer in a particular way. Here is how we make that happen with Django. -
Uploading With Django and Amazon S3
In this short post, I describe how I configured Django to upload to Amazon S3 instead of a regular file-system upload. It can be useful for … -
Mastering Django: Core
The NEW Django Book - a collection of free django tutorials and training for beginner to intermediate programmers -
Enforcing minimum and maximum values in Django model fields
-
Helpful bash aliases for Django : django
-
Welcome to Mastering Django - Mastering Django
-
python - How do I get user IP address in django? - Stack Overflow
-
Two Scoops of Django: Best Practices for Django 1.8 – Two Scoops Press