Projet

Général

Profil

Télécharger (397 octets) Statistiques
| Branche: | Tag: | Révision:

calebasse / calebasse / personnes / templates / personnes / simple-form.html @ d20ee7a9

1
{% extends "personnes/base.html" %}
2

    
3
{% block appbar %}
4
  <h2></h2>
5
  <a href="..">Retour</a>
6
{% endblock %}
7

    
8
{% block content %}
9
    <form method="post" autocomplete="off">
10
      <div id="form-content">
11
        {% csrf_token %}
12
        {{ form.as_p }}
13
      </div>
14
      {% block buttons %}
15
      <button class="enable-on-change">Modifier</button>
16
      {% endblock %}
17
    </form>
18
{% endblock %}
(12-12/16)