blob: 48dda06541f5009e5ab18ded29de648ac03b10e3 (
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
86
|
{% extends "base.html" %}
{% block title %}
Catégorie {{ id }}
{% endblock title %}
{% block main %}
<section class="g-Section">
<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">
Nom
<input
name="name"
class="g-Form__Input"
value="{{ form.name | default(value=category.name) }}"
required
/>
</label>
<label class="g-Form__Label">
Couleur
<input
name="color"
type="color"
class="g-Form__Input g-Form__InputColor"
value="{{ form.color | default(value=category.color) }}"
required
/>
</label>
<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">
Veuillez recopier le nom de la catégorie : « {{ category.name }} ».
<input name="remove-input" class="g-Form__Input" data-name="{{ category.name }}" />
</label>
<div>
<input id="remove-button" class="g-Button__Danger" type="submit" value="Supprimer" disabled />
</div>
{% endif %}
</form>
{% endif %}
</section>
{% endblock main %}
|