{ "info": { "author": "Jared Forsyth", "author_email": "jabapyth@gmail.com", "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": "Feedback\n========\n\nCreates an ajax \"feedback\" button on your site, which pops up a form for the\nuser to fill.\n\n+ Add it to your installed apps::\n\n INSTALLED_APPS += ('feedback',)\n\n\n+ Sync the database\n\n+ Add a line to your urls.py::\n\n url(r'^feedback/', include('feedback.urls')),\n\n+ Use it (only requires template modifications)::\n\n \n {% include \"feedback/header.html\" %}\n \n \n {% include \"feedback/button.html\" %}\n\n+ Or use your own button which pops up feedback form::\n\n \n {% include \"feedback/feedback.html\" %}\n