Skip to main content

Django custom admins

Project description

django-privatesite
==================

Django custom admins.
Don`t reinvent the bicycle and use django.contrib.admin everywhere.

[![Downloads](https://pypip.in/d/django-privatesite/badge.png)](https://crate.io/packages/django-privatesite)

BENEFITS of django.contrib.admin
--------------------------------

* Used access control from django.contrib.admin
* Used inlines (generic inlines)
* Used fieldsets
* Used filters
* Used Actions
* Delete Confirmation
* Object history
* Pagination
* Widgets for dates, raw id field

INSTALLATION
------------

Install from pypi, with pip::

pip install django-privatesite


Add ``privatesite`` to ``INSTALLED_APPS``::

INSTALLED_APPS = ("privatesite", ) + ('django.contrib.admin', ...)

Please note, that ``privatesite`` app must be upper
then ``django.contrib.admin app`` in ``INSTALLED_APPS`` list
to overload ``admin/base_site.html`` template

USAGE
------------

from privatesite.admin import CustomAdminSite

site1 = CustomAdminSite(name="site1", app_name="admin")

class MyPrivateZone(CustomAdminSite):
admin_base_template = 'my_zone/base.html'

site2 = MyPrivateZone(name="zone", app_name="admin")

personal = CustomAdminSite(name="personal", app_name="admin")

register models now

from myapp.models import Car, Animal, Human

site1.register(Car)
site2.register(Car)
site2.register(Animal)
site2.register(Human)
personal.register(Human)

in urls.py

urlpatterns += patterns("",
(r'^manage/admin/', include(site1.urls)),
(r'^private/admin/', include(site2.urls)),
(r'^personal/', include(personal.urls)),
)

And go to see, whats happen.

In template you may use

{% url 'site1:myapp_car_changeview' %}
{% url 'site2:myapp_car_change' car_id %}

{% url 'personal:myapp_human_history' human_id %}

If you want to add custom views, use this helper
https://github.com/ionelmc/django-admin-utils

TODO
------

* don`t work with django-admin-tools now (fix in near future)
* write tests

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-privatesite-0.0.2.zip (7.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page