1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-24 13:01:18 +00:00

17 lines
429 B
HTML
Raw Normal View History

2020-12-27 11:49:54 +01:00
{% extends "base.html" %}
2021-01-14 21:07:09 +01:00
{% load django_tables2 i18n %}
2020-12-27 11:49:54 +01:00
{% block content %}
2021-02-06 19:34:17 +01:00
{% if user.registration.is_volunteer %}
2023-02-20 14:52:25 +01:00
<div class="d-grid">
<a href="{% url "registration:add_organizer" %}" class="btn gap-0 btn-secondary">
<i class="fas fa-user-plus"></i> {% trans "Add organizer" %}
</a>
</div>
2021-01-14 21:07:09 +01:00
<hr>
{% endif %}
2020-12-27 11:49:54 +01:00
{% render_table table %}
{% endblock %}