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

91 lines
3.4 KiB
HTML
Raw Normal View History

{% 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 %}
2017-12-27 23:10:30 +00:00
{% load acl %}
{% block sidebar %}
{% if request.user.is_authenticated%}
2017-12-27 23:10:30 +00:00
{% can_create Club %}
<a class="list-group-item list-group-item-success" href="{% url "users:new-club" %}">
<i class="glyphicon glyphicon-plus"></i>
Créer un club/association
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_create User %}
2017-11-21 04:47:05 +00:00
<a class="list-group-item list-group-item-success" href="{% url "users:new-user" %}">
<i class="glyphicon glyphicon-plus"></i>
Créer un adhérent
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% endif %}
{% can_view_all Club %}
<a class="list-group-item list-group-item-info" href="{% url "users:index-clubs" %}">
<i class="glyphicon glyphicon-list"></i>
Clubs et assos
</a>
{% acl_end %}
2017-12-27 23:10:30 +00:00
{% can_view_all Adherent %}
<a class="list-group-item list-group-item-info" href="{% url "users:index" %}">
2016-11-18 10:53:10 +00:00
<i class="glyphicon glyphicon-list"></i>
Adherents
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all Ban %}
<a class="list-group-item list-group-item-info" href="{% url "users:index-ban" %}">
2016-11-18 10:53:10 +00:00
<i class="glyphicon glyphicon-list"></i>
Bannissements
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all Whitelist %}
2016-11-18 10:53:10 +00:00
<a class="list-group-item list-group-item-info" href="{% url "users:index-white" %}">
<i class="glyphicon glyphicon-list"></i>
Accès à titre gracieux
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all School %}
2016-11-18 10:53:10 +00:00
<a class="list-group-item list-group-item-info" href="{% url "users:index-school" %}">
<i class="glyphicon glyphicon-list"></i>
Établissements
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all ListRight %}
2016-11-18 10:53:10 +00:00
<a class="list-group-item list-group-item-info" href="{% url "users:index-listright" %}">
<i class="glyphicon glyphicon-list"></i>
2017-12-31 16:11:19 +00:00
Groupes de droits
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 23:10:30 +00:00
{% acl_end %}
{% can_view_all ServiceUser %}
2017-06-18 12:59:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url "users:index-serviceusers" %}">
<i class="glyphicon glyphicon-list"></i>
Gérer les 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 %}
<a class="list-group-item list-group-item-danger" href="{% url "users:mass-archive" %}">
<i class="glyphicon glyphicon-book"></i>
Archiver en masse
</a>
2017-12-29 11:34:49 +00:00
{% acl_end %}
{% endblock %}