File: README.Debian

package info (click to toggle)
python-django-extensions 3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,748 kB
  • sloc: python: 15,663; javascript: 7,354; makefile: 116; xml: 17; sh: 7
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