{% extends base_template|default:"recruitment/base.html" %} {% load static i18n bootstrap4 %} {% block title %}{% trans "Edit attributes" %} · {{ block.super }}{% endblock %} {% block content %}
{% for error in form.non_field_errors %} {% endfor %} {% csrf_token %} {% for field, answer_declined in uncategorized %}
{% bootstrap_field field form_group_class="" %}
{% endfor %} {% for category, fields in categories.items %}
{{ category }} {% for field, answer_declined in fields %}
{% bootstrap_field field form_group_class="" %}
{% endfor %}
{% endfor %}
{% trans "Back" %}
{% endblock %} {% block extra_scripts %} {% endblock %}