aboutsummaryrefslogtreecommitdiff
path: root/templates/category/update.html
blob: a4c14818420ae3bee885adf56234a0dfdf9d88e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{% extends "base.html" %}

{% block title %}
  Catégorie {{ id }}
{% endblock title %}

{% block main %}

  <div>
    <p class="g-Paragraph">
      <a class="g-Link g-Media__Large" href="/categories">
        Retour aux catégories
      </a>
    </p>

    {% if error %}
      <div class="g-Form__Error">{{ error }}</div>
    {% endif %}

    {% if not category %}

      La catégorie n’a pas été trouvée.

    {% else %}

      <form
        class="g-Form"
        action="/category/{{ category.id }}/update"
        method="POST"
      >
        <h1 class="g-H1">Modification</h1>

        <label class="g-Form__Label" for="name">Nom</label>
        <input
          name="name"
          class="g-Form__Input"
          id="name"
          value="{{ form.name | default(value=category.name) }}"
          required
        />

        <label class="g-Form__Label" for="color">Couleur</label>
        <input
          name="color"
          type="color"
          class="g-Form__Input g-Form__InputColor"
          id="color"
          value="{{ form.color | default(value=category.color) }}"
          required
        />

        <div>
          <input class="g-Button__Validate" type="submit" value="Modifier" />
        </div>
      </form>

      <form
        class="g-Form"
        action="/category/{{ category.id }}/delete"
        method="POST"
      >
        <h1 class="g-H1">Suppression</h1>

        {% if is_category_used %}
          <p>
            La catégorie ne peut pas être supprimée car elle est actuellement
            utilisée.
          </p>
        {% else %}
          <label class="g-Form__Label" for="remove-input">
            Veuillez recopier le nom de la catégorie : « {{ category.name }} ».
          </label>

          <input name="remove-input" class="g-Form__Input" id="remove-input" data-name="{{ category.name }}" />

          <div>
            <input class="g-Button__Danger" type="submit" value="Supprimer" id="remove-button" disabled />
          </div>
        {% endif %}
      </form>

    {% endif %}
  </div>

{% endblock main %}