{% load widget_tweaks static i18n %}
{% csrf_token %} {% if form.errors %} {% endif %} {% for field in form %} {% for error in field.errors %} {% endfor %} {% endfor %}
{% trans "General Parameters" %}
{{form.topic.errors}} {% render_field form.topic class="form-control" %}
{% render_field form.init_date class='form-control date-picker' %}
{% render_field form.end_date class='form-control date-picker' %}
{% trans "Choose the Data Source (is possible to pick more than one)" %}
{{ resource_tag_formset.management_form }} {% for resource_tag_form in resource_tag_formset %} {% if resource_tag_form.anchor.errors %} {% for error in resource_tag_form.anchor.errors %} {{ error|escape }} {% endfor %} {% endif %}
{% for field in resource_tag_form %}
{% render_field field class="form-control " %}
{% endfor %}
{% endfor %}