Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django snippets: Super User Conditional Page Exception Reporting
Normal users will get your 500.html when debug = False, but If you are logged in as a super user then you get to see the stack trace in all its glory. -
Django Decorator to Print SQL Queries - PushingKarma
-
How To Tango With Django — How to Tango with Django
-
Learning Django using resource other than official docs : django
-
dobarkod/django-queryinspect
-
Home - mtford.co.uk
A silky smooth profiling and inspection tool for the Django framework. Intercept requests, profile chunks of code and dive into the stack traces of long running and repetitive queries. -
dobarkod/django-queryinspect
Query Inspector is a Django application providing middleware for inspecting and reporting SQL queries executed for each web request. -
dobarkod/django-queryinspect
-
joke2k/django-environ · GitHub
Django-environ - allows you to utilize 12factor inspired env variables to configure your #Django app #python -
AngularJS Ajax/Django calls not recognised as AJAX
Andrew Ellerton Tech Lead and Software Engineer For anyone who notes that AngularJS AJAX calls to a Django back-end don't get recognised as AJAX by Django, add this in your ng code: // See h... -
Multi-language support in a Django project | Development Doodles
-
Python2web.com
pythonists:: python, web & django Network. -
Waffle — django-waffle 0.10 documentation
-
DjangoCon [local] | Welcome
-
Django Single Table Inheritance on the cheap. - Schinckel.net
def __init__(self, *args, **kwargs): super(Sheep, self).__init__(*args, **kwargs) # If we don't have a subclass at all, then we need the type attribute to match # our current class. if not self.__class__.__subclasses__(): self.type = self.__class__.__name__.lower() else: subclass = [x for x in self.__class__.__subclasses__() if x.__name__.lower() == self.type] if subclass: self.__class__ = subclass[0] else: self.type = self.__class__.__name__.lower() -
python - Why don't my south migrations work? - Stack Overflow
Setting up a brand new project and no database create your database add south to installed apps run syncdb, this will add the django and south tables to the database add your apps for each app run python manage.py schemamigration app_name --initial this will create the initial migration files for your app then run south migrate python manage.py migrate app_name this will add the tables to the database. Setting up a legacy project and database add south to installed apps run syncdb, this will add the south tables to the database for each of your apps run python manage.py schemamigration app_name --initial This will create your initial migrations for each of your apps run python manage.py migrate app_name 0001 --fake , this will fake out south, it won't do anything to the database for those models, it will just add records to the south_migrationhistory table so that the next time you want to create a migration, you are all set. Setting up a legacy project and no database create database add south to installed apps for each of your apps run python manage.py schemamigration app_name --initial This will create your initial migrations run syncdb, this will add any apps that … -
Django database migration tool: south, explained | DjangoPro
-
edX Research Guide — edX Research Guide documentation
-
Angular.js with Django — Tech Talk — Medium
-
Arthur Hanson
Singapore-based freelance Django dev -
Python Diary | Project Templates
-
TDDjangoTutorial
-
Getting Started With Django: A Crash Course — Getting Started With Django: A Crash Course 1.0 documentation
-
wnielson / django-chronograph — Bitbucket
-
Angular.js with Django
Example of quickly and easily creating a Angular.js front end onto Django/TastyPie.