django-object-tools

Django app enabling painless creation of additional admin object tools
Download

django-object-tools Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Publisher Name:
  • Praekelt Foundation
  • Publisher web site:
  • http://praekelt.com

django-object-tools Tags


django-object-tools Description

Django app enabling painless creation of additional admin object tools django-object-tools is a Django app enabling painless creation of additional admin object tools.Installation1. Install or add django-object-tools to your python path.2. Add object_tools to your INSTALLED_APPS setting. django-object-tools overrides certain admin templates so you have to add it before django.contrib.admin.3. Call object tool's autodiscover method. This works in a similar fashion as Django's admin; discovering which tools to render in admin. You can do this in any module that is called during initialization but we recommend doing it in urls.py, as illustrated in the next point.4. Hook up URLConf. Do this by pointing a given URL at the tools.urls method. In this example, we register the default Tools instance object_tools.tools at the URL /object-tools/: # urls.py from django.conf.urls.defaults import * import object_tools object_tools.autodiscover() urlpatterns = patterns('', (r'^object-tools/', include(object_tools.tools.urls)), )5. Obviously Django Admin itself needs to be installed, as described here.6. Remember to run syncdb whenever you install new tools to setup permissions. Requirements: · Python · Django


django-object-tools Related Software