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.
 
 
 
 
 
 

17 lines
416 B

{% extends 'base.html' %}
{% block body %}
<form method="post" class="form-horizontal" enctype="multipart/form-data" name="form1" id="form1"> {% csrf_token %}
{% for field in form %}
{{ field.name }}
{% with field='{{ field.int }}' form=form languages=languages %}
{% include 'admin/forms/multilang.html' %}
{% endwith %}
{% endfor %}
</form>
{% endblock %}