{ "info": { "author": "Matthias Kestenholz", "author_email": "mk@feinheit.ch", "bugtrack_url": null, "classifiers": [], "description": "Django-FHAdmin\n==============\n\nModifies the stock Django-Administration interface to fit our ideas a little\nbit better.\n\n\nDashboard and global navigation extension\n-----------------------------------------\n\nAllows grouping of apps on the dashboard and offers the same view on each\nadmin page by sliding down the bar on top after a small delay when hovered.\n\nConfiguration example::\n\n from fhadmin import FHADMIN_GROUPS_REMAINING\n _ = lambda x: x\n\n FHADMIN_GROUPS_CONFIG = [\n (_('Main content'), {\n 'apps': ('page', 'medialibrary', 'blog'),\n }),\n (_('Modules'), {\n 'apps': ('links', FHADMIN_GROUPS_REMAINING),\n }),\n (_('Preferences'), {\n 'apps': ('auth', 'rosetta', 'external', 'sites'),\n }),\n ]\n\n\nThe extension is activated by overriding both ``admin/base_site.html`` for the\nslide-down navigation and ``admin/index.html`` for the dashboard, and adding\n``fhadmin`` to ``INSTALLED_APPS`` so that the template tags and static files\nare found. The following two templates are contained in\n``fhadmin/templates/admin`` as well.\n\n``admin/base_site.html``::\n\n {% extends \"admin/base.html\" %}\n {% load i18n %}\n\n {% block extrahead %}\n \n {% endblock %}\n\n {% block title %}{{ title }} | {% trans 'Django administration' %}{% endblock %}\n\n {% block branding %}\n