{% extends 'staff_base.html' %} {% load static %} {% block breadcrumb %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }}
{% csrf_token %} {{ formset.management_form }}
{% for form in formset %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endfor %}
{% translate 'Question/Answer (German)' %} {% translate 'Question/Answer (English)' %} {% translate 'Actions' %}
{% include 'bootstrap_form_field_widget.html' with field=form.question_de %} {% include 'bootstrap_form_field_widget.html' with field=form.answer_de %} {% include 'bootstrap_form_field_widget.html' with field=form.question_en %} {% include 'bootstrap_form_field_widget.html' with field=form.answer_en %} {% include 'bootstrap_form_field_widget.html' with field=form.DELETE class="d-none" %}
{% endblock %} {% block additional_javascript %} {% endblock %}