summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudioforms/gstudioattributetypeform.html
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
committergnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
commit7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch)
treed2afc3463fd49625a9be482012f5c3bfcf7c42b9 /gstudio/templates/gstudioforms/gstudioattributetypeform.html
downloadgnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz
master trunk of gnowsys-studio
Diffstat (limited to 'gstudio/templates/gstudioforms/gstudioattributetypeform.html')
-rw-r--r--gstudio/templates/gstudioforms/gstudioattributetypeform.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/gstudio/templates/gstudioforms/gstudioattributetypeform.html b/gstudio/templates/gstudioforms/gstudioattributetypeform.html
new file mode 100644
index 0000000..7b5529f
--- /dev/null
+++ b/gstudio/templates/gstudioforms/gstudioattributetypeform.html
@@ -0,0 +1,21 @@
+{% extends "gstudio/base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %}
+<h2>Form to add Attributetypes</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 %}