diff options
Diffstat (limited to 'src/templates/apps/room/modify.html')
-rw-r--r-- | src/templates/apps/room/modify.html | 14 |
1 files changed, 14 insertions, 0 deletions
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 |