File: README.Debian

package info (click to toggle)
python-django-extensions 0.4.2pre%2Bgit201004211325-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 768 kB
  • ctags: 739
  • sloc: python: 4,197; makefile: 76
file content (24 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
README.Debian for python-django-extensions
==========================================

You need to add 'django_extensions' to your INSTALLED_APPS iterable - this
usually resides in the `settings.py' file. Eg:

  INSTALLED_APPS = (
      'django.contrib.auth',
      'django.contrib.contenttypes',
      'django.contrib.sessions',
      'django.contrib.sites',
      'django_extensions',
       <..>
  )

Alternatively, you make the application optional with:

  try:
      import django_extensions
      INSTALLED_APPS = INSTALLED_APPS + ('django_extensions',)
  except ImportError:
      pass

 -- Chris Lamb <lamby@debian.org>  Thu, 26 Mar 2009 22:18:21 +0000