Newer
Older
![ZZZ[GONE] PERRIER Guillaume ZZZ[GONE] PERRIER Guillaume's avatar](/assets/no_avatar-849f9c04a3a0d0cea2424ae97b27447dc64a7dbfae83c036c45b403392f0e8ba.png)
ZZZ[GONE] PERRIER Guillaume
committed
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
<!-- Modal -->
<div class="modal fade" id="modal_updates" tabindex="-1" role="dialog" aria-labelledby="modal_updates" aria-modal="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalTitle">Mise à jour de plusieurs bandes</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="form-group">
<label for="statut">Statut</label>
<select class="form-select" name="statut" id="statut">
<option value="0">pas de MAJ</option>
{% for statut in tabStatuts %}
<option value="{{ statut.statutid }}">{{ statut.statut }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="statut">Service</label>
<select class="form-select" name="statut" id="service">
<option value="0">pas de MAJ</option>
{% for service in tabServices %}
<option value="{{ service.serviceid }}">{{ service.nom }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="description">Ajouter une description à toutes les bandes</label>
<input type="text" name="description" id="description" class="form-control"/>
</div>
<div class="form-group">
<label for="comment">Ajouter un commentaire à toutes les bandes</label>
<input type="text" name="comment" id="comment" class="form-control"/>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Fermer</button>
<button type="button" class="btn btn-primary valid_maj" id="valid_maj">Modifier
![ZZZ[GONE] PERRIER Guillaume ZZZ[GONE] PERRIER Guillaume's avatar](/assets/no_avatar-849f9c04a3a0d0cea2424ae97b27447dc64a7dbfae83c036c45b403392f0e8ba.png)
ZZZ[GONE] PERRIER Guillaume
committed
</button>
</div>
</div>
</div>
</div>