{% extends 'frontend/base.html' %} {% block title %} - {{ title }}{% endblock %} {% block content %}

{{ title }}

Back to FAQ List
{% csrf_token %}
{{ form.title }} {% if form.title.help_text %}
{{ form.title.help_text }}
{% endif %} {% if form.title.errors %}
{% for error in form.title.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.content }} {% if form.content.help_text %}
{{ form.content.help_text }}
{% endif %} {% if form.content.errors %}
{% for error in form.content.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.order }} {% if form.order.help_text %}
{{ form.order.help_text }}
{% endif %} {% if form.order.errors %}
{% for error in form.order.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
Cancel
{% endblock %}