Fixed the installation documentation

This commit is contained in:
Daniel Greenfeld 2013-07-07 16:45:12 +02:00
parent fff84a6bfe
commit 153137d4eb
2 changed files with 10 additions and 6 deletions

View file

@ -76,12 +76,14 @@ Add djadmin2 and rest_framework to your settings file:
.. code-block:: python
INSTALLED_APPS = (
...
'djadmin2',
'rest_framework', # for the browsable API templates
...
)
INSTALLED_APPS = (
...
'djadmin2',
'rest_framework', # for the browsable API templates
'floppyforms', # For HTML5 form fields
'crispy_forms', # Required for the default theme's layout
...
)
Add djadmin2 urls to your URLconf:

View file

@ -22,6 +22,8 @@ Add djadmin2 and rest_framework to your settings file:
...
'djadmin2',
'rest_framework', # for the browsable API templates
'floppyforms', # For HTML5 form fields
'crispy_forms', # Required for the default theme's layout
...
)