target: | https://readthedocs.org/projects/django-faq-views/?badge=latest |
---|---|
alt: | Documentation Status |
FAQ is a simple Django app to list frequently asked questions. Multiple topics can be listed with separate questions and answers.
Add "faq" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'faq', )
Include the faq URLconf in your project urls.py like this:
url(r'^faq/', include('faq.urls')),
Run python manage.py migrate to create the faq models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create an faq topic with questions and answers (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/faq/ to view the topics, questions, and answers.
- Add detail view to separate topics into separate pages
- Add unit tests