{% extends "faq/base.html" %}
{% load i18n %}
{# This template will only be used if the ``faq.urls.deep`` patterns are used. #}
{% block title %}{% blocktrans with question.question as question %}FAQ: {{ question }}{% endblocktrans %}{% endblock %}
{% block header %}
{% trans "FAQ" %} ›
{{ topic }} ›
{{ question }}
{% endblock %}
{% block content %}
{{ question.answer|linebreaks|urlize }}
{% endblock %}