Project

General

Profile

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

root / corbo / templates / corbo / announce_form.html @ 83bedd6f

1 cc12ccfe Serghei MIHAI
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3 f38ae358 Frédéric Péters
4
{% block appbar %}
5
{% if object %}
6
  <h2>{% trans "Modify Announce" %}</h2>
7
{% else %}
8
  <h2>{% trans "New Announce" %}</h2>
9
{% endif %}
10
{% endblock %}
11
12 cc12ccfe Serghei MIHAI
{% block content %}
13
<form method="post">
14
  {% csrf_token %}
15
  {{ form.media }}
16 f38ae358 Frédéric Péters
  {{ form.as_p }}
17
  <div class="buttons">
18 e4729afc Serghei MIHAI
    <button>{% trans "Save" %}</button>
19 f38ae358 Frédéric Péters
  </div>
20 e4729afc Serghei MIHAI
  <script type="text/javascript">
21
    $(function() {
22 83bedd6f Serghei Mihai
        $(".datetimepicker" ).datetimepicker();
23 e4729afc Serghei MIHAI
    });
24
</script>
25 cc12ccfe Serghei MIHAI
</form>
26
{% endblock %}