{% block faq_detail_categories %}
{% render_model object "category" "category" %}
{% endblock faq_detail_categories %}
{% 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 %}
{% url 'aldryn_faq:faq-category' object.category.slug as category_url %}
{% include "aldryn_faq/includes/pager.html" with title=_("Back to Category") slug=category_url %}
{% static_placeholder "faq_detail_bottom" %}
{% endblock %}