summaryrefslogtreecommitdiffstats
path: root/templates/general_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/general_form.html')
-rw-r--r--templates/general_form.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/general_form.html b/templates/general_form.html
new file mode 100644
index 0000000..4c17481
--- /dev/null
+++ b/templates/general_form.html
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+
+{% block content %}
+ <div class="greybox">
+ <h2 class="title">{{title}}</h2>
+ <form method="post" action=".">
+ <table>
+ {% for field in form %}
+ <tr>
+ <td style="vertical-align:top">
+ <span {% if field.required %}style="fontweight: bold"{% endif%}>{{field.label}}:</span>
+ <br /><span style="font-size:x-small">{{field.help_text}}</span></td>
+ <td>{{field}}</td>
+ </tr>
+ {% endfor %}
+ <tr>
+ <td colspan="2" style="text-align:right">
+ <input type="submit" value=" {{submit_text}} " />
+ </td>
+ </tr>
+ </table>
+ </form>
+ </div>
+{% endblock %}