Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Customizing the Django Admin
Customizing the Django Admin When the Django Admin fails and what you can do to fix it Peter Baumg -
The Django Book
-
Sentry — Sentry v1.6.5 documentation
-
DISQUS Code - Gargoyle
-
Servers — Django Best Practices
-
Pro Django by Marty Alchin
-
Nullege: A Search Engine for Python source code
-
Armstrong
Armstrong is an open-source CMS designed for news organizations providing the technology needed to report in a media-rich environment. Armstrong is freely available to any organization. It is the result of a collaboration between The Texas Tribune and Bay Citizen, and a grant from the John S. and James L. Knight Foundation. The first release is scheduled for June, 2011. -
Fun. Fabulous. Foo. - Separating Django Cache via User Agent
-
nutshell — Lettuce v0.1.21 (barium release) documentation
-
Sfalma - Your bug aggregator
-
Django 開発初心者に送る 10 の Tips (超訳?) - SPEAKER BREAKA
-
Testing time-based views in Django
-
Debugging Django
-
Django | User authentication in Django | Django documentation
-
OAuthcalypse Now: Tweeting with Twitter, OAuth and Django | Mitch Fournier
-
The Django Book: Version 2.0 (English)
-
Django | User authentication in Django | Django documentation
from django.contrib.auth import authenticate, login def my_view(request): username = request.POST['username'] password = request.POST['password'] user = authenticate(username=username, password=password) if user is not None: if user.is_active: login(request, user) # Redirect to a success page. else: # Return a 'disabled account' error message else: # Return an 'invalid login' error message. -
vgarvardt/django-loginza - GitHub
Loginza.ru -
django-tinymce - Project Hosting on Google Code
-
ojii's Profile - GitHub
-
Example where model != resource? - django-piston | Google Groups
-
Celery - The Distributed Task Queue
-
django cms
-
dl.dropbox.com/u/20553/Writing Great Documentation.pdf