mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
53 lines
2 KiB
HTML
53 lines
2 KiB
HTML
{% comment %}
|
|
Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
quelques clics.
|
|
|
|
Copyright © 2017 Gabriel Détraz
|
|
Copyright © 2017 Lara 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 logs_extra %}
|
|
{% load i18n %}
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading clearfix profil" data-parent="#accordion" data-toggle="collapse"
|
|
data-target="#machines">
|
|
<h3 class="panel-title pull-left">
|
|
<i class="fa fa-desktop"></i>
|
|
{% trans "Machines" %}
|
|
<span class="badge">{{ nb_machines }}</span>
|
|
</h3>
|
|
</div>
|
|
<div id="machines" class="panel-collapse collapse">
|
|
<div class="panel-body">
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:new-machine' users.id %}">
|
|
<i class="fa fa-desktop"></i>
|
|
{% trans "Add a machine" %}
|
|
</a>
|
|
</div>
|
|
<div class="panel-body">
|
|
{% if machines_list %}
|
|
{% include 'machines/aff_machines.html' with machines_list=machines_list %}
|
|
{% else %}
|
|
<p>{%trans "No machines" %}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|