Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django проект PR Hero: что внутри и полученный опыт / Django Framework / Хабрахабр
-
Tutorial: Using Celery with Django | Query7
-
Using Virtualenv and PasteScript video tutorial - Agile Development Tools in Python - Learn: nosetests, tools, easy_install, useful, environment, testing, agile, nose, documentation, development, virtual, help, packages, docstring, create, screencasts, pa
Using Virtualenv and PasteScript [ID:785] (1/3) in series: Agile Development Tools in Python video tutorial by percious, added 07/08 -
Adding Views to the Django Admin | Beardy Geek
-
Generating ICalendar ICS files from Django-Events : django
-
Best practices in web development with Python and Django « News Apps Blog
-
Generating ICalendar ICS files from Django-Events by Elf Sternberg
The Django Event Calendar is a fairly old and well-respected piece of code, useful for a variety of social networking and announcement-oriented applications. It’s not the be-all of events calendars, but it does what it has to well enough. I’ve used it on several projects. -
Django snippets: Generate Google Calendar links from django-event-calendar
This very simple templatetag can take event objects from django-event-calendar and create the appropriate URLs to automatically allow users to add events from your website to Google calendar. -
Simple & Easy Deployment with Fabric and Virtualenv | Blog | Django Development | Lincoln Loop
In the process of prepping Gondola CMS for public consumption, we’ve grown from having a developer (me), to having a development team. One pain point that quickly arose was the amount of time it took for new developers to setup a local development environment. In addition to our source code, the project depends on nearly a dozen other Django apps and Python packages. Initially, we simply tracked the requirements in a text file, but it required a lot of manual work to get them downloaded and installed -
Easy Fabric Deployment, Part 1: Git/Mercurial and SSH | Blog | Django Development | Lincoln Loop
We use git for our code repositories and Fabric to automate our build/deployment process. The tiny bit of overhead it take to write out a Fabric script pays off very quickly against the tedium and error-prone practice of manually building/deploying. In building our “fabfile”, we encountered a couple of issues that took a little head-scratching to work out. -
django-command-extensions - Django Custom Management Command Extensions - Google Project Hosting
-
Blog Index - Die in a Fire - Eric Florenzano’s Blog
-
django_startproject/project_template at master from lincolnloop/django-startproject - GitHub
Boilerplate code for new Django projects. -
The Onion Uses Django, And Why It Matters To Us : django
CMS -
Doing cool things in Django's Admin
-
Top 5 Favorite Django Modules | Imaginary Landscape Blog | Chicago Django and Python Web Development
-
Django Staging Server: Apache Configuration
In this post, I'd like to talk a little about how my staging server (called Kaylee, after the character from Firefly), is configured to run the multiple Django projects that I have on the go. A lot of the other articles I have read on this subject use mod_python but my server is configured to use WSGI, so that's what I will be going over in this post. -
Optimizing Django: tricks for faster page loads | TurnKey Linux Blog
By reducing the file size of your CSS, JavaScript and images, as well as the number of unnecessary browser requests made to your site, load time of your applications pages can be drastically reduced, not to mention the load on your server. -
bitmazk/django-cms-html5-1140px-boilerplate - GitHub
At bitmazk we create beautifull handcrafted websites. After nearly 10 years of web development it turned out that a simple apache / django / django-cms stack works best for us and our customers. -
DjangoResources – Django
-
alex/django-taggit - GitHub
Apparently this is the new kid on the block and should be used instead of django-tagging. -
Episodes Archive - DjangoCon - blip.tv
-
django-komodo-kit - Increase productivity on Django projects while using Komodo with this collection of snippets, macros, commands, toolbars, templates, and extensions. - Google Project Hosting
-
Django Class-Based Generic Views / Valya Golev's very own site!
Django Class-Based Generic Views on Prezi -
Django i18n tricks | Multitasked.net - Home of Martin De Wulf
In Belgium, we have three national languages : French, Dutch and German. Consequently, when you create a web application for Belgian people, you HAVE to think about Internationalization, that is, preparing you application for the translation, and Localization, that is, really translating all the text and changing date formats and such for a given language. By the way, for those that are not in the know, as me one year ago, internationalization is often abbreviated to i18n, because there are 18 letters between the i and the n, and localization is abbreviated to l10n.