2013-05-18 11:00:51 +00:00
|
|
|
Welcome to django-admin2's documentation!
|
|
|
|
|
=========================================
|
|
|
|
|
|
2013-05-18 11:05:19 +00:00
|
|
|
**django-admin2** aims to replace django's builtin admin that lives in
|
|
|
|
|
``django.contrib.admin``. Come and help us, have a look at the
|
|
|
|
|
:doc:`contributing` page and see our `GitHub`_ page.
|
|
|
|
|
|
2013-05-18 11:30:45 +00:00
|
|
|
Basic API
|
|
|
|
|
==============
|
|
|
|
|
|
|
|
|
|
Our goal is to make this API work:
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
# myapp/admin2.py
|
|
|
|
|
|
|
|
|
|
# Import the Admin2 base class
|
|
|
|
|
from djadmin2.models import Admin2
|
|
|
|
|
|
|
|
|
|
# Import your custom models
|
|
|
|
|
from blog.models import Post
|
|
|
|
|
|
|
|
|
|
# Instantiate the Admin2 class
|
|
|
|
|
# Then attach the admin2 object to your model
|
|
|
|
|
Post.admin2 = Admin2()
|
|
|
|
|
|
|
|
|
|
|
2013-05-18 11:05:19 +00:00
|
|
|
.. _GitHub: https://github.com/pydanny/django-admin2
|
|
|
|
|
|
|
|
|
|
Content
|
|
|
|
|
-------
|
2013-05-18 11:00:51 +00:00
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
|
:maxdepth: 2
|
|
|
|
|
|
2013-05-18 11:05:19 +00:00
|
|
|
contributing
|
2013-05-18 11:53:16 +00:00
|
|
|
design
|
2013-05-18 11:00:51 +00:00
|
|
|
|
|
|
|
|
Indices and tables
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
* :ref:`genindex`
|
|
|
|
|
* :ref:`modindex`
|
|
|
|
|
* :ref:`search`
|
|
|
|
|
|