18 lines
879 B
HTML
18 lines
879 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load django_tables2 getconfig i18n %}
|
|
|
|
{% block content %}
|
|
{% if user.is_authenticated and user.admin %}
|
|
<div class="alert alert-info">
|
|
<a href="mailto:contact@tfjm.org?subject=TFJM²%20{{ "TFJM_YEAR"|get_env }}&bcc={{ team_users_emails|join:"," }}">{% trans "Send a mail to all people that are in a team" %}</a><br>
|
|
<a href="mailto:contact@tfjm.org?subject=TFJM²%20{{ "TFJM_YEAR"|get_env }}&bcc={{ valid_team_users_emails|join:"," }}">{% trans "Send a mail to all people that are in a valid team" %}</a>
|
|
</div>
|
|
{% endif %}
|
|
{% render_table table %}
|
|
{% if user.is_authenticated and user.admin %}
|
|
<hr>
|
|
<a class="btn btn-block btn-secondary" href="{% url "tournament:add" %}"><i class="fas fa-calendar-plus"></i> {% trans "Add a tournament" %}</a>
|
|
{% endif %}
|
|
{% endblock %}
|