django-adminhelp

A help application for Django admin
Download

django-adminhelp Ranking & Summary

Advertisement

  • Rating:
  • License:
  • LGPL v3
  • Price:
  • FREE
  • Publisher Name:
  • Guilherme Gondim
  • Publisher web site:
  • http://code.google.com/u/semente/

django-adminhelp Tags


django-adminhelp Description

django-adminhelp is a pluggable help system for Django Web Framework to be used with administration application.Admin Help was inspired by help system of Django Grappelli.Project page http://github.com/semente/django-adminhelpInstalling & SetupAdmin Help is in the Python Package Index (PyPI) and you can easily install the latest stable version of it using the tools pip or easy_install. Try:pip install django-adminhelpor:easy_install django-adminhelpAlternatively, you can install Admin Help from source code running the follow command on directory that contains the file setup.py:python setup.py installAfter installation of requirements you need configure your project to recognizes the Admin Help application adding 'adminhelp' to your INSTALLED_APPS setting and setup the project URLConf like follow:urlpatterns = patterns('', # ... (r'^admin/help/', include('adminhelp.urls')), # put it before admin urls (r'^admin/', include(admin.site.urls)),)Don't forget to run the command syncdb.Admin Help also provides templates to show a "help" button on some admin pages. You can setup the ModelAdmin you are interested like follow:class ExampleAdmin(admin.ModelAdmin): change_list_template = 'adminhelp/admin/change_list.html' change_form_template = 'adminhelp/admin/change_form.html' ...You will need add the django.core.context_processors.request on your TEMPLATE_CONTEXT_PROCESSORS to use these templates and the template tags help_link and help_list_item.TEMPLATE_CONTEXT_PROCESSORS = ( # ... 'django.core.context_processors.request',)Product's homepage


django-adminhelp Related Software