1
|
{% extends "organization/base.html" %}
|
2
|
{% load i18n %}
|
3
|
|
4
|
{% block content %}
|
5
|
<form method="post" autocomplete="off">
|
6
|
{% csrf_token %}
|
7
|
<table>
|
8
|
{{ form.as_table }}
|
9
|
</table>
|
10
|
<div class="form-actions">
|
11
|
<input type="submit" value="{% trans "Update" %}" class="btn btn-primary" />
|
12
|
<button name="delete" class="ui-state-default delete-button icon-delete">{% trans "Delete" %}</button>
|
13
|
</div>
|
14
|
<script>
|
15
|
$('input.datepicker').datepicker({dateFormat: "yy-mm-dd", weekStart: 1 });
|
16
|
</script>
|
17
|
</form>
|
18
|
{% endblock %}
|