{% block faq_detail_categories %}
{% render_model object "category" "category" %}
{% endblock faq_detail_categories %}
{% if object.tags.all %}
{% for tag in object.tags.all %}
{{ tag }}
{% endfor %}
{% endif %}
{% block faq_detail_title %}
{% render_model object "title" %}
{% endblock faq_detail_title %}
{% block faq_detail_lead %}
{% if question.answer_text %}
{% render_model object "answer_text" "answer_text" "" safe %}
{% endif %}
{% endblock faq_detail_lead %}
{% block faq_detail_content %}
{% render_placeholder object.answer 800 %}
{% endblock faq_detail_content %}
{% endblock %}
{% block faq_footer %}
{% include "aldryn_faq/includes/pager.html" with title=_("Back to Category") slug=category_url %}
{% static_placeholder "faq_detail_bottom" %}
{% endblock %}