{ "info": { "author": "Andy Baker", "author_email": "andy@andybak.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "django-admin-notifications\n==========================\n\nA simple app to allow apps to register notifications that can be displayed in the admin via a template tag\n\n\nInstallation\n------------\n\nAdd 'admin_notifications' to INSTALLED_APPS\n\n\nBasic usage\n-----------\n\n\nCustomize whichever of your admin templates you which to display the notifications thus.\n\nload the template tags at the start of the template::\n\n {% load notification_tag %}\n\nadd the tag to your template. I customised the admin index template and placed the tag before the 'content-main' DIV like thus::\n\n {% block content %}\n \n {% error_notifications %}\n