8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-03-16 20:39:21 +00:00
re2o/machines/templates/machines/sidebar.html

86 lines
3.1 KiB
HTML
Raw Normal View History

2019-01-09 00:39:31 +01:00
{% extends 'base.html' %}
{% comment %}
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
se veut agnostique au réseau considéré, de manière à être installable en
quelques clics.
Copyright © 2017 Gabriel Détraz
Copyright © 2017 Goulven Kermarec
Copyright © 2017 Augustin Lemesle
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
{% load acl %}
{% load i18n %}
{% block sidebar %}
{% can_view_all Machine %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "Machines" %}
2016-11-18 11:53:10 +01:00
</a>
{% acl_end %}
{% can_view_all MachineType %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-machinetype' %}">
<i class="fa fa-list-ul"></i>
2018-08-05 18:48:22 +02:00
{% trans "Machine types" %}
2016-11-18 11:53:10 +01:00
</a>
{% acl_end %}
{% can_view_all Extension %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-extension' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "Extensions and zones" %}
2016-11-18 11:53:10 +01:00
</a>
{% acl_end %}
{% can_view_all IpType %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-iptype' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "IP ranges" %}
2016-11-18 11:53:10 +01:00
</a>
{% acl_end %}
{% can_view_all Vlan %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-vlan' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "VLANs" %}
</a>
{% acl_end %}
{% can_view_all Nas %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-nas' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "NAS devices" %}
</a>
{% acl_end %}
{% can_view_all machines.Service %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-service' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "Services (DHCP, DNS, ...)" %}
</a>
{% acl_end %}
2018-06-23 16:39:03 +02:00
{% can_view_all Role %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-role' %}">
2018-06-23 16:39:03 +02:00
<i class="fa fa-list-ul"></i>
{% trans "Server roles" %}
2018-06-23 16:39:03 +02:00
</a>
{% acl_end %}
{% can_view_all OuverturePortList %}
2019-01-09 00:39:31 +01:00
<a class="list-group-item list-group-item-info" href="{% url 'machines:index-portlist' %}">
<i class="fa fa-list-ul"></i>
2018-09-24 19:31:12 +02:00
{% trans "Ports openings" %}
</a>
{% acl_end %}
{% endblock %}
2019-01-09 00:39:31 +01:00