Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
CakePHP vs Django « Open Source Missions
-
Django + Boletos « Oximoro
-
Django snippets: Ajax form with jQuery
-
JSON response in Django views with jQuery
-
Django tips: A simple AJAX example, part 1
-
Home - django-cms.org
-
mixedCase: Django-CMS vs. FeinCMS vs. Mezzanine
When you need a content management system for Django, there is enough choice. Maybe even too much: the very helpful site djangopackages.com lists 13. Some are mature and very feature-complete, while others are barely more then a basic model and a template. The biggest three systems (in terms of downloads, repo forks and -watchers) are Django-CMS, FeinCMS and Mezzanine. I've built sites with both Django-CMS and Mezzanine, looked at FeinCMS and decided to write down a comparison. -
Using Checkinstall With Virtualenv For Python Deployments
use your friendly system packages and using a handy tool called Checkinstall to create a deb or rpm. I’m going to use as an example the Eventlet library. This is available in PyPi and one of it’s dependencies (Greenlets) provides a C extension. The same approach would work for an entire Python web application too. I’m as ever using the apt package management tool but this should work with yum as well. -
The news done broke
-
Blog Roll: ESI using varnish and django
-
Evaluating Django Caching Options | codysoyland.com
-
Mezzanine - Django CMS
-
Djangy - Instant deployment and scaling for your Django applications
-
Building a Read Only Field in Django
-
Django tips: A simple AJAX example, part 1
-
A Django deployment guide for Ubuntu | Ventanazul
-
A Django deployment guide for Ubuntu | Ventanazul
-
Djangy - Instant deployment and scaling for your Django applications
-
A Django deployment guide for Ubuntu | Ventanazul
-
Django with Mysql and Apache on EC2 — The Usware Blog - Django Web Development
-
Mezzanine — Mezzanine v0.10.4 documentation
-
Using Django's runserver to serve css - Stack Overflow
from mysite import settings if settings.DEBUG: urlpatterns += patterns('', (r'^mymedia/(?P.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), ) -
jQuery plugin: Django Dynamic Formset " elo80ka
-
Django snippets: Alphabetic filter for admin
Filters values by first character in the admin filter sidebar in Django. -
Django snippets: Filter by first letter inclusion tag