8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 21:24:05 +00:00
re2o/topologie/templates/topologie/index_room.html
2016-07-19 02:30:52 +02:00

16 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 %}