summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudioforms/gstudiocomplementform.html
blob: 4304d2429e53de6b35e79f1f063806be8bfd0c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "gstudio/base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
{% csrf_token %}  
<h2>Form to add Complements</h2>
{% for field in formset %}

     {{ field.label_tag }}:{{ field }}<br>
     {{field.help_text}}<br>
     {{ field.errors }}<br>


{% endfor %}

  <input type="Submit" value="{% trans 'ADD' %}" />
  <input type="hidden" name="next" value="{{ next }}" />
</form>

{% endblock %}