summaryrefslogtreecommitdiff
path: root/templates/apps
diff options
context:
space:
mode:
Diffstat (limited to 'templates/apps')
-rw-r--r--templates/apps/invitation/edit.html10
-rw-r--r--templates/apps/membership/edit.html9
-rw-r--r--templates/apps/name/add.html10
-rw-r--r--templates/apps/name/delete.html8
-rw-r--r--templates/apps/name/edit.html11
5 files changed, 45 insertions, 3 deletions
diff --git a/templates/apps/invitation/edit.html b/templates/apps/invitation/edit.html
index ab833ad..28fc447 100644
--- a/templates/apps/invitation/edit.html
+++ b/templates/apps/invitation/edit.html
@@ -1 +1,9 @@
-{% extends "edit.html" %} \ No newline at end of file
+{% extends "edit_fieldsets.html" %}
+{% block widgets %}
+ $('#id_expires').datepicker({'dateFormat': 'yy-mm-dd','timeFormat': 'hh:ii:ss'});
+ $('#form').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "Finish"
+ });
+{% endblock %} \ No newline at end of file
diff --git a/templates/apps/membership/edit.html b/templates/apps/membership/edit.html
index ab833ad..e9074b0 100644
--- a/templates/apps/membership/edit.html
+++ b/templates/apps/membership/edit.html
@@ -1 +1,8 @@
-{% extends "edit.html" %} \ No newline at end of file
+{% extends "edit_fieldsets.html" %}
+{% block widgets %}
+ $('#form').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "Finish"
+ });
+{% endblock %} \ No newline at end of file
diff --git a/templates/apps/name/add.html b/templates/apps/name/add.html
new file mode 100644
index 0000000..aba49ad
--- /dev/null
+++ b/templates/apps/name/add.html
@@ -0,0 +1,10 @@
+{% extends "edit_fieldsets.html" %}
+{% block widgets %}
+ $('#id_expires').datepicker({'dateFormat': 'yy-mm-dd','timeFormat': 'hh:ii:ss'});
+ $('#id_description').wysiwyg();
+ $('#form').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "Finish"
+ });
+{% endblock %} \ No newline at end of file
diff --git a/templates/apps/name/delete.html b/templates/apps/name/delete.html
new file mode 100644
index 0000000..e9074b0
--- /dev/null
+++ b/templates/apps/name/delete.html
@@ -0,0 +1,8 @@
+{% extends "edit_fieldsets.html" %}
+{% block widgets %}
+ $('#form').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "Finish"
+ });
+{% endblock %} \ No newline at end of file
diff --git a/templates/apps/name/edit.html b/templates/apps/name/edit.html
index ab833ad..aba49ad 100644
--- a/templates/apps/name/edit.html
+++ b/templates/apps/name/edit.html
@@ -1 +1,10 @@
-{% extends "edit.html" %} \ No newline at end of file
+{% extends "edit_fieldsets.html" %}
+{% block widgets %}
+ $('#id_expires').datepicker({'dateFormat': 'yy-mm-dd','timeFormat': 'hh:ii:ss'});
+ $('#id_description').wysiwyg();
+ $('#form').formwizard({
+ validationEnabled: true,
+ focusFirstInput: true,
+ textSubmit: "Finish"
+ });
+{% endblock %} \ No newline at end of file