Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Building Dashboards with Django and D3 — dreisbach.us
-
pydanny/cookiecutter-django: Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.
a great django skeleton app, good for reference -
Customizing authentication in Django | Django documentation | Django
using email as login for django -
Querying JSON in Postgres - Schinckel.net
tips for writing json postgres queries -
charles leifer | The missing library: ad-hoc queries for your models
I thought this was referring to Django but in fact it's more abstract than that. -
Hosting Your Django Projects on Bluehost! – Hello World!
-
Using Webpack transparently with Django + hot reloading React components as a bonus - Owais Lone
-
syrusakbary/pyjade: Jade syntax adapter for Django, Jinja2 and Mako templates
-
No need to use get_context_data, use {{ view.some_method }} - Reinout van Rees
Two different mechanisms for injecting data into a template's context. "get_context_data" override vs "automatic inclusion of view variable in the context" . -
Amazon.fr - Python 3 - Les fondamentaux du langage - Complément vidéo : Création d'un modèle de données sous Django - Sébastien CHAZALLET - Livres
-
How to implement Slack like Magic Link Login in Django - IdiotInside.com
-
Django Girls Tutorial
This tutorial will not magically turn you into a programmer. If you want to be good at it, you need ... -
Trigger Happy
Python/Django-based open-source IFTTT. -
Django Factory Audit // James Cooke // London based Python developer
-
barseghyanartur/django-fobi: Form generator/builder application for Django done right: customisable, modular, user- and developer- friendly.
-
stephenmcd/django-forms-builder: Let users build forms in Django admin
-
Supervisor with Django and Gunicorn - Agiliq Blog | Django web app development
-
Async Tasks With Django Channels
Slides and supporting materials for the talk at PyCon Canada 2016 -
Django queryset exclude() with multiple related field clauses - Stack Overflow
Problem with the Django ORM - reference to bug report re filter and exclude not being exact inverses of each other. I found this when searching for how to get 2 conditions into an exclude clause with 2 conditions. Bug: https://code.djangoproject.com/ticket/14645 Solution, force a subquery: User.objects.exclude(id__in=User.objects.filter(preferences__preference="PREF_A", preferences__value=True)) -
Development Environments with Vagrant and Ansible · Daniel Groves
-
Setup Django With Python 3 and Nginx in Vagrant | Sky Kok
-
Deploy Django on Apache with Virtualenv and mod_wsgi | The Code Ship [http://thecodeship.com/]
-
Django/Ember Authentication is Easy
This is three years old. -
Writing your first Django app, part 1 | Django documentation | Django
-
python - Django: WSGIRequest' object has no attribute 'user' on some pages? - Stack Overflow