1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-08-14 10:06:40 +02:00
Files
plateforme-tfjm2/apps/registration/templates/registration/user_list.html
2021-01-17 12:40:23 +01:00

15 lines
373 B
HTML

{% extends "base.html" %}
{% load django_tables2 i18n %}
{% block content %}
{% if user.registration.is_admin %}
<a href="{% url "registration:add_organizer" %}" class="btn btn-block btn-secondary">
<i class="fas fa-user-plus"></i> {% trans "Add organizer" %}
</a>
<hr>
{% endif %}
{% render_table table %}
{% endblock %}