mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-25 22:22:26 +00:00
18 lines
819 B
HTML
18 lines
819 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Chambre</th>
|
|
<th>Commentaire</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for room in room_list %}
|
|
<tr>
|
|
<td>{{room.name}}</td>
|
|
<td>{{room.details}}</td>
|
|
<td>{% if is_infra %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:edit-room' room.id %}"><i class="glyphicon glyphicon-random"></i> Editer</a>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'topologie:del-room' room.id %}"><i class="glyphicon glyphicon-trash"></i> Supprimer</a>{% endif %}
|
|
<a class="btn btn-info btn-sm" role="button" href="{% url 'topologie:history' 'room' room.pk %}"><i class="glyphicon glyphicon-repeat"></i> Historique</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|