summaryrefslogtreecommitdiff
path: root/templates/edit_fieldsets_tabs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/edit_fieldsets_tabs.html')
-rw-r--r--templates/edit_fieldsets_tabs.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/templates/edit_fieldsets_tabs.html b/templates/edit_fieldsets_tabs.html
new file mode 100644
index 0000000..04f7a69
--- /dev/null
+++ b/templates/edit_fieldsets_tabs.html
@@ -0,0 +1,45 @@
+{% extends "tree.html" %}
+{% block widgets %}{% endblock %}
+{% block content %}
+ {% block beforeform %}
+ {% endblock %}
+ <h2>{{formtitle}}</h2>
+
+ <form method="POST">
+ {% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
+ <div id="tabs">
+ <ul>
+ {% for fieldset in form.fieldsets %}
+ <li><a href="#{{fieldset.name}}">{{fieldset.legend}}</a></li>
+ {% endfor %}
+ </ul>
+ {% for fieldset in form.fieldsets %}
+ <div class="fieldset" id="{{fieldset.name}}">
+ {% if fieldset.description %}
+ <p class="description">{{ fieldset.description }}</p>
+ {% endif %}
+ <ul class="inputs">
+ {% for field in fieldset %}
+ {% if field.is_hidden %}
+ {{ field }}
+ {% else %}
+ <li class="inputs {% if field.field.required %}required{% endif %}" {{ field.row_attrs }}>
+ {{ field.errors }}
+ <label for="id_{{ field.html_name }}" class="fieldlabel">{{ field.label }}
+ {% if field.field.required %}<b>*</b>{% endif %}</label>
+ <div class="fieldinput">{{ field }}</div>
+ </li>
+ {% endif %}
+ {% endfor %}
+ </ul>
+ </div>
+ {% endfor %}
+ </div>
+ <ul class="ilist" style="padding-bottom: 30px; padding-top: 10px; padding-left: 0px;">
+ <li class="button left"><input type="submit" value="Update"/></li>
+ {% if name %}
+ <li class="button right"><input type="button" onClick="document.location='{{name.url}}'" value="Cancel"/></li>
+ {% endif %}
+ </ul>
+ </form>
+{% endblock %} \ No newline at end of file