summaryrefslogtreecommitdiff
path: root/src/templates
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/apps/room/create.html8
-rw-r--r--src/templates/apps/room/modify.html14
-rw-r--r--src/templates/apps/room/update.html8
-rw-r--r--src/templates/form.html39
4 files changed, 69 insertions, 0 deletions
diff --git a/src/templates/apps/room/create.html b/src/templates/apps/room/create.html
new file mode 100644
index 0000000..7989856
--- /dev/null
+++ b/src/templates/apps/room/create.html
@@ -0,0 +1,8 @@
+{% extends "apps/room/modify.html" %}
+{% block beforeform %}
+<div class="ui-state-highlight ui-corner-all" style="margin-bottom: 5px;">
+<p class="infopanel">
+<span class="ui-icon ui-icon-info"></span>
+Here you can create a new meeting room...
+</p></div>
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/apps/room/modify.html b/src/templates/apps/room/modify.html
new file mode 100644
index 0000000..e76d01f
--- /dev/null
+++ b/src/templates/apps/room/modify.html
@@ -0,0 +1,14 @@
+{% extends "form.html" %}
+{% block widgets %}
+ $('#wizard').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "{{submitname}}",
+ validationOptions: {
+ rules: {
+ name: 'required',
+ urlpath: 'required'
+ }
+ }
+ });
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/apps/room/update.html b/src/templates/apps/room/update.html
new file mode 100644
index 0000000..3e5c4fa
--- /dev/null
+++ b/src/templates/apps/room/update.html
@@ -0,0 +1,8 @@
+{% extends "apps/room/modify.html" %}
+{% block beforeform %}
+<div class="ui-state-highlight ui-corner-all" style="margin-bottom: 5px;">
+<p class="infopanel">
+<span class="ui-icon ui-icon-info"></span>
+Here you can update an existing meeting room...
+</p></div>
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/form.html b/src/templates/form.html
new file mode 100644
index 0000000..682ece7
--- /dev/null
+++ b/src/templates/form.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+{% load prefix %}
+{% block content %}
+ <h1>{% block formtitle %}{{formtitle}}{% endblock %}</h1>
+ {% block beforeform %}{% endblock %}
+ <form method="POST" id="wizard" enctype="multipart/form-data" class="bbq infopanel">
+ {% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
+ {% for fieldset in form.fieldsets %}
+ <fieldset id="{{fieldset.name}}" class="{{ fieldset.classes }}">
+ {% if fieldset.legend %}
+ <legend class="ui-state-highlight ui-corner-all">{{ fieldset.legend }}</legend>
+ {% endif %}
+ {% if fieldset.description %}
+ <p class="description" style="border-bottom: 1px solid #CECECE; padding-bottom: 5px;">{{ fieldset.description }}</p>
+ {% endif %}
+ <ul class="links">
+ {% for field in fieldset %}
+ {% if field.is_hidden %}
+ {{ field }}
+ {% else %}
+ <li class="links {% 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>
+ </fieldset>
+ {% endfor %}
+ <ul class="ilist" style="padding-top: 10px; padding-bottom: 5px;">
+ <li class="button left"><input type="reset" value="Back"/></li>
+ <li class="button left"><input type="submit" value="Finish"/></li>
+ <li class="button right"><input type="button" onClick="document.location='/room'" value="Cancel"/></li>
+ </ul>
+ <div class="clear"></div>
+ </form>
+{% endblock %}