mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 10:26:25 +00:00
16 lines
620 B
HTML
16 lines
620 B
HTML
{% extends "topologie/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Ports du switch{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Switch {{ nom_switch }}</h2>
|
|
{% if is_infra %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:edit-switch' id_switch %}"><i class="glyphicon glyphicon-edit"></i> Editer</a>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'topologie:new-port' id_switch %}"><i class="glyphicon glyphicon-plus"></i> Ajouter un port</a>
|
|
{% endif %}
|
|
{% include "topologie/aff_port.html" with port_list=port_list %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|