summaryrefslogtreecommitdiff
path: root/templates/apps/invitation/edit.html
blob: b565d1070e423b0c986216159d934a289cd66e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "edit_fieldsets.html" %}
{% block widgets %}
    $('#id_expires').datepicker({'dateFormat': 'yy-mm-dd','timeFormat': 'hh:ii:ss'});
	$('#wizard').formwizard({
    	validationEnabled: true,
    	focusFirstInput: true,
    	textSubmit: "Finish",
    	validationOptions: {
    		rules: {
    			email: 'email required',
    			expires: 'date required'
    		}
    	}
    });
{% endblock %}