Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
MailGun as an SMTP Server for Django Apps
-
The uWSGI Swiss Army Knife | Lincoln Loop
-
django - django_auth_ldap no module named ldap - Stack Overflow
sudo apt-get install python-dev libldap2-dev libsasl2-dev libssl-dev -
Testing Django Views Without Using the Test Client - Ian Lewis
-
Guest Post: If Django Girls makes you uncomfortable, maybe that’s a good thing | Geek Feminism Blog
-
The full user-authentication lifecycle in Django, with testing at every step — The step-by-step tutorial I wish I had (part one) | aliteralmind — Computer Programming Blog
-
django-tables2 - An app for creating HTML tables
-
Django REST framework
-
charles leifer Python/Django Blog
-
DjangoTricks
-
SwampDragon - Build real-time web applications with Django
-
OAuth2 with Django REST Framework
-
▶ Python from Scratch - Creating a Dynamic Website - YouTube
-
▶ Python Web Development: Understanding Django for Beginners - YouTube
-
jschrewe/django-mongoadmin
-
Building a Movie Recommendation Service with Apache Spark & Flask - Part 1 | Codementor
-
EliotBerriot/django-dynamic-preferences
-
python - django user_passes_test decorator - Stack Overflow
Building on @Chris Pratt's answer, you'll probably want to do this in multiple view classes so it makes sense to turn it into a mixin. class SuperuserRequiredMixin(object): @method_decorator(user_passes_test(lambda u: u.is_superuser)) def dispatch(self, *args, **kwargs): return super(SuperuserRequiredMixin, self).dispatch(*args, **kwargs) Usage class MyView(SuperuserRequiredMixin, View): def get(self, request): ... To prevent unexpected MRO bugs, ensure the mixin is the first inherited class. You can implement a LoginRequiredMixin, or any other common tests you use in your app, in the same way. -
Grappelli Admin Interface
-
Setting up Django with Nginx, Gunicorn, virtualenv, supervisor and PostgreSQL
-
python - Getting TemplateDoesNotExist from Django 1.8 - Stack Overflow
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [BASE_DIR+"/templates", ], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] -
9. User Authentication — How to Tango with Django 1.7
-
UsingVimWithDjango – Django
-
Django Advice / Steve Losh
-
epantry/django-sql-explorer
django-sql-explorer - Easily share data via SQL queries, right from Django