{% extends "faq/base.html" %} {% block body %} {% load url from future %}

Welcome to the django-fack example project

If you aren't seeing any data below, or if you're getting random 404s, make sure you've loaded the sample data by running ./manage.py loaddata faq_test_data.

Here are some options to try:

The topic list.
This view shows a list of all the FAQ topic areas.
A topic detail page.
This shows the list of all questions in a given topic.
A question detail page.
This shows an individual question. Again, it'll only work if you've loaded the sample data.
The question submission page.
You can submit questions here. You'll notice that submitted questions don't immediately appear: they're set to "inactive" and have to be approved via the site admin.
Speaking of the admin, here's the FAQ admin.
Remember that you can clean up submitted questions in the admin before the will be visible in the FAQ.
Finally, below are some questions fetched into this template using a template tag - {% templatetag openblock %} faq_list 3 as faqs {% templatetag closeblock %}.
Some FAQ questions include: {% load faqtags %} {% faq_list 3 as faqs %} {% for faq in faqs %} {{ faq.text }} {% if not forloop.last %}/{% endif %} {% endfor %}
{% endblock %}