summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudioforms/gstudioattributeform.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/gstudioforms/gstudioattributeform.html')
-rw-r--r--gstudio/templates/gstudioforms/gstudioattributeform.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/gstudio/templates/gstudioforms/gstudioattributeform.html b/gstudio/templates/gstudioforms/gstudioattributeform.html
new file mode 100644
index 0000000..6779ab5
--- /dev/null
+++ b/gstudio/templates/gstudioforms/gstudioattributeform.html
@@ -0,0 +1,21 @@
+{% extends "gstudio/base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %}
+<h2>Form to add attributes</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 %}