You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
padelclub_backend/tournaments/templates/tournaments/navigation_tournament.html

75 lines
3.0 KiB

<nav class="margin10">
<a href="{% url 'index' %}" class="topmargin5 orange">Accueil</a>
<a href="{% url 'tournament-info' tournament.id %}" class="topmargin5 orange">Informations</a>
{% if tournament.supposedly_in_progress %}
<a href="{% url 'tournament-live' tournament.id %}" class="topmargin5 orange">Live</a>
{% endif %}
{% if tournament.display_prog %}
<a href="{% url 'tournament-prog' tournament.id %}" class="topmargin5 orange">Programmation</a>
{% endif %}
{% if tournament.display_matches and tournament.has_bracket %}
<a href="{% url 'tournament-bracket' tournament.id %}" class="topmargin5 orange">Tableau</a>
{% endif %}
{% if tournament.display_matches or tournament.display_group_stages %}
<a href="{% url 'tournament' tournament.id %}" class="topmargin5 orange">Matchs</a>
{% endif %}
{% if tournament.display_group_stages %}
<a href="{% url 'group-stages' tournament.id %}" class="topmargin5 orange">Poules</a>
{% endif %}
{% if tournament.display_summons %}
<a href="{% url 'tournament-summons' tournament.id %}" class="topmargin5 orange">Convocations</a>
{% endif %}
{% if tournament.display_teams %}
<a href="{% url 'tournament-teams' tournament.id %}" class="topmargin5 orange">Équipes</a>
{% endif %}
{% if tournament.display_rankings %}
<a href="{% url 'tournament-rankings' tournament.id %}" class="topmargin5 orange">Classement</a>
{% endif %}
{% if user.is_authenticated %}
<a href="{% url 'profile' %}" class="topmargin5">Mon compte</a>
{% else %}
<a href="{% url 'login' %}" class="topmargin5">Se connecter</a>
{% endif %}
<!-- Superuser private toggle form -->
{% if user.is_superuser %}
<form method="post" action="{% url 'toggle_tournament_private' tournament.id %}" style="display: inline;">
{% csrf_token %}
<button
type="submit"
class="topmargin5"
title="Changer la visibilité du tournoi"
onclick="return confirm('Êtes-vous sûr de vouloir changer la visibilité de ce tournoi ?{% if tournament.is_private %}\n\nCe tournoi deviendra public et sera visible par tous.{% else %}\n\nCe tournoi deviendra privé et ne sera visible que par les administrateurs.{% endif %}')"
style="
padding: 8px 12px;
font-size: 0.9em;
border-radius: 4px;
background: {% if tournament.is_private %}#dc3545{% else %}#28a745{% endif %};
color: white;
cursor: pointer;
font-weight: bold;
margin-top: 5px;
display: block;
width: auto;
font-family: inherit;
">
{% if tournament.is_private %}
🔒 Tournoi Privé
{% else %}
🌐 Tournoi Public
{% endif %}
</button>
</form>
{% endif %}
</nav>