mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
15 lines
445 B
HTML
15 lines
445 B
HTML
{% extends "topologie/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Chambres{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Chambres</h2>
|
|
{% if is_infra %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:new-room' %}"><i class="glyphicon glyphicon-plus"></i> Ajouter une chambre</a>
|
|
{% endif %}
|
|
{% include "topologie/aff_chambres.html" with room_list=room_list %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|