You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
491 B

{% extends "dynamic_preferences/base.html" %}
{% load i18n %}
{% block content %}
{# we continue to pass the sections key in case someone subclassed the template and use these #}
{% include "dynamic_preferences/sections.html" with registry=registry sections=registry.sections %}
<form action="" enctype="multipart/form-data" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans 'Submit' %}" />
</form>
{% endblock %}