Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sax-os4d committed Jul 12, 2011
1 parent fd0e5b7 commit 2e34091
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
7 changes: 5 additions & 2 deletions docs/source/help.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ Project links
* Project home page: https://github.com/saxix/django-iadmin
* Isssue tracker: https://github.com/saxix/django-iadmin/issues?sort
* Documentation: http://packages.python.org/django-iadmin/
* Download: http://pypi.python.org/pypi/django-iadmin/
* Mailing-list: django-iadmin@googlegroups.com
* PyPi site: http://pypi.python.org/pypi/django-iadmin/

Get help
--------
* Ask questions on the `django-iadmin <https://groups.google.com/group/django-iadmin>`_ mailing list.
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
iAdmin documentation
====================

:Release: |version|
:Release: |release|
:Date: |today|

iAdmin is a replacement of the standard Django Admin application that offer some useful extra :ref:`features <features>`.
Expand Down
21 changes: 19 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,25 @@ Add :mod:`iadmin` to your :setting:`INSTALLED_APPS`::
'django.contrib.admin',
'django.contrib.messages',
)
STATIC_URL = MEDIA_URL # iAdmin use STATIC_URL. You have to create this entry
IADMIN_FILE_UPLOAD_MAX_SIZE = 2000000 #
IADMIN_FM_ROOT = # file manager home
IADMIN_FM_CONFIG = {}




.. admonition:: Users of Diango <1.3

iAdmin use STATIC_URL. You have to create this entry in your settings. Use this lines ONLY if you don't use staticfiles app,
leave your STATIC_* configuration otherwise

::

STATIC_URL = '/s/static/'
STATIC_ROOT = MEDIA_ROOT




Add an entry into your urls.conf::

Expand Down

0 comments on commit 2e34091

Please sign in to comment.