2019-01-09 00:39:08 +01:00
|
|
|
{% extends 'base.html' %}
|
2017-01-15 18:07:42 -05:00
|
|
|
{% 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
|
2019-09-29 16:02:28 +02:00
|
|
|
Copyright © 2017 Lara Kermarec
|
2017-01-15 18:07:42 -05:00
|
|
|
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 %}
|
|
|
|
|
2017-12-29 11:43:09 +01:00
|
|
|
{% load acl %}
|
2018-08-05 18:57:36 +02:00
|
|
|
{% load i18n %}
|
2016-10-31 17:27:27 +01:00
|
|
|
|
|
|
|
{% block sidebar %}
|
2017-12-29 11:43:09 +01:00
|
|
|
{% can_view_app logs %}
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:index' %}">
|
2018-09-19 13:37:10 +02:00
|
|
|
<i class="fa fa-clipboard"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "Summary" %}
|
2017-09-09 18:59:51 +00:00
|
|
|
</a>
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:stats-logs' %}">
|
2018-09-19 13:37:10 +02:00
|
|
|
<i class="fa fa-calendar"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "Events" %}
|
2016-11-18 11:53:10 +01:00
|
|
|
</a>
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:stats-general' %}">
|
2018-09-19 13:37:10 +02:00
|
|
|
<i class="fa fa-area-chart"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "General" %}
|
2017-05-26 04:32:45 +02:00
|
|
|
</a>
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:stats-models' %}">
|
2018-03-07 11:45:03 +01:00
|
|
|
<i class="fa fa-database"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "Database" %}
|
2016-11-18 11:53:10 +01:00
|
|
|
</a>
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:stats-actions' %}">
|
2018-03-07 11:45:03 +01:00
|
|
|
<i class="fa fa-plug"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "Wiring actions" %}
|
2016-11-18 11:53:10 +01:00
|
|
|
</a>
|
2019-01-09 00:39:08 +01:00
|
|
|
<a class="list-group-item list-group-item-info" href="{% url 'logs:stats-users' %}">
|
2018-03-07 11:45:03 +01:00
|
|
|
<i class="fa fa-users"></i>
|
2018-08-05 18:57:36 +02:00
|
|
|
{% trans "Users" %}
|
2016-11-18 11:53:10 +01:00
|
|
|
</a>
|
2017-12-29 11:43:09 +01:00
|
|
|
{% acl_end %}
|
2016-10-31 17:27:27 +01:00
|
|
|
{% endblock %}
|
2018-08-05 18:57:36 +02:00
|
|
|
|