Project

General

Profile

Download (352 Bytes) Statistics
| Branch: | Tag: | Revision:

root / corbo / templates / corbo / announce_form.html @ e4729afc

1
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3
{% block content %}
4
<form method="post">
5
  {% csrf_token %}
6
  {{ form.media }}
7
  <ul>
8
  {{ form.as_ul }}
9
  <li>
10
    <button>{% trans "Save" %}</button>
11
  </li>
12
  </ul>
13
  <script type="text/javascript">
14
    $(function() {
15
        $(".datepicker" ).datepicker();
16
    });
17
</script>
18
</form>
19
{% endblock %}
(2-2/7)