8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-27 23:22:25 +00:00
re2o/users/templates/users/sidebar.html

99 lines
3.6 KiB
HTML
Raw Normal View History

2019-01-08 23:40:59 +00: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 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 %}
2017-12-27 23:10:30 +00:00
{% load acl %}
2018-08-15 17:15:26 +00:00
{% load i18n %}
{% block sidebar %}
{% if request.user.is_authenticated%}
2017-12-27 23:10:30 +00:00
{% can_create Club %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-success" href="{% url 'users:new-club' %}">
<i class="fa fa-plus"></i>
2018-08-15 17:15:26 +00:00
{% trans "Create a club or organisation" %}
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_create Adherent %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-success" href="{% url 'users:new-user' %}">
<i class="fa fa-user-plus"></i>
2018-08-15 17:15:26 +00:00
{% trans "Create a user" %}
2017-11-21 04:47:05 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% endif %}
{% can_view_all Club %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-clubs' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Clubs and organisations" %}
</a>
{% acl_end %}
2017-12-27 23:10:30 +00:00
{% can_view_all Adherent %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Users" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all Ban %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-ban' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Bans" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all Whitelist %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-white' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Whitelists" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all School %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-school' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Schools" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all ListShell %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-shell' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Shells" %}
</a>
{% acl_end %}
2017-12-27 23:10:30 +00:00
{% can_view_all ListRight %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-listright' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Groups of rights" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all ServiceUser %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'users:index-serviceusers' %}">
<i class="fa fa-list-ul"></i>
2018-08-15 17:15:26 +00:00
{% trans "Service users" %}
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
2017-12-29 11:34:49 +00:00
{% can_change User state %}
2019-01-08 23:40:59 +00:00
<a class="list-group-item list-group-item-danger" href="{% url 'users:mass-archive' %}">
<i class="fa fa-archive"></i>
2018-08-15 17:15:26 +00:00
{% trans "Massively archive" %}
</a>
2017-12-29 11:34:49 +00:00
{% acl_end %}
{% endblock %}
2018-08-15 17:15:26 +00:00