
django-generic-faq
The Django FAQ app provides simple Frequently Asked Questions support to your Django project. Notable features include:
- Add questions and publish / unpublish them
- Organize questions into "topics"
- Allow users to submit new questions, questions which are verified through the user's email address before submission to site alertees
Requirements: * Python 2.5+ * Django 1.1+
Setup:
* Add 'faq',
to your project's INSTALLED_APPS
tuple,
* add this to your urls.py urlpatterns tuple: (r'^faq/', include('faq.urls')),
* run python manage.py syncdb
from the command line,
* add an ALERTEES
setting to your project's settings.py
file, which should look similar to your MANAGERS
setting (in fact, you can specify ALERTEES = MANAGERS
provided you have defined managers),
* done.