{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %} FAQ {% endblock %} {% load static %} {% block content %} {% for q in object_list %} {% ifchanged %}

{{ q.category_text }}


{% endifchanged %}

{{q.question}}

{{q.answer_rendered | safe }} {% if request.user.is_superuser %} Admin {% endif %}


{% endfor %} Still got questions? Email me: {% if request.user.is_authenticated %}{{admin_email|urlize}}{% else %}(Sign in to see email){% endif %}
{% endblock %} {% block extra_js %} {% endblock %}