mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-04-04 11:31:11 +00:00
15 lines
377 B
HTML
15 lines
377 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load django_tables2 i18n %}
|
|
|
|
{% block content %}
|
|
{% if user.registration.is_volunteer %}
|
|
<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 %}
|