mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 02:12:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			497 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			497 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load i18n django_tables2 %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    {% render_table table %}
 | 
						|
 | 
						|
    <hr>
 | 
						|
 | 
						|
    <form method="post">
 | 
						|
        {% csrf_token %}
 | 
						|
        <div class="btn-group btn-block">
 | 
						|
            {% for tournament in tournaments.all %}
 | 
						|
                <button name="tournament_zip" value="{{ tournament.id }}" class="btn btn-success">{% blocktrans %}{{ tournament }} — ZIP{% endblocktrans %}</button>
 | 
						|
            {% endfor %}
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |