mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 02:12:05 +01:00 
			
		
		
		
	@@ -23,7 +23,7 @@
 | 
			
		||||
 | 
			
		||||
<div id="draw-content-{{ tournament.id }}" class="{% if not tournament.draw %}d-none{% endif %}">
 | 
			
		||||
    <div class="container">
 | 
			
		||||
        <div class="card col-md-12">
 | 
			
		||||
        <div class="card col-md-12 my-3">
 | 
			
		||||
            <div class="card-header">
 | 
			
		||||
                <h2>{% trans "Last dices" %}</h2>
 | 
			
		||||
            </div>
 | 
			
		||||
@@ -44,7 +44,7 @@
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-md-3">
 | 
			
		||||
            <div class="col-md-5 my-3">
 | 
			
		||||
                <div class="card">
 | 
			
		||||
                    <div class="card-header">
 | 
			
		||||
                        Recap
 | 
			
		||||
@@ -55,17 +55,17 @@
 | 
			
		||||
                        {% endif %}
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="card-body">
 | 
			
		||||
                        <ul id="recap-{{ tournament.id }}-round-list" class="list-group list-group-flush">
 | 
			
		||||
                        <div id="recap-{{ tournament.id }}-round-list" class="row">
 | 
			
		||||
                            {% for round in tournament.draw.round_set.all %}
 | 
			
		||||
                                <li id="recap-{{ tournament.id }}-round-{{ round.number }}"
 | 
			
		||||
                                    class="list-group-item {% if tournament.draw.current_round == round %} list-group-item-primary{% endif %}"
 | 
			
		||||
                                    data-tournament="{{ tournament.id }}">
 | 
			
		||||
                                <div id="recap-{{ tournament.id }}-round-{{ round.number }}"
 | 
			
		||||
                                     class="col-md-6 px-3 py-3 {% if tournament.draw.current_round == round %} text-bg-secondary{% endif %}"
 | 
			
		||||
                                     data-tournament="{{ tournament.id }}">
 | 
			
		||||
                                    <strong>{{ round }}</strong>
 | 
			
		||||
                                    <ul id="recap-{{ tournament.id }}-round-{{ round.number }}-pool-list"
 | 
			
		||||
                                        class="list-group list-group-flush">
 | 
			
		||||
                                        {% for pool in round.pool_set.all %}
 | 
			
		||||
                                            <li id="recap-{{ tournament.id }}-round-{{ round.number }}-pool-{{ pool.get_letter_display }}"
 | 
			
		||||
                                                class="list-group-item {% if tournament.draw.current_round.current_pool == pool %} list-group-item-success{% endif %}"
 | 
			
		||||
                                                class="list-group-item px-3 py-3 {% if tournament.draw.current_round.current_pool == pool %} list-group-item-success{% endif %}"
 | 
			
		||||
                                                data-tournament="{{ tournament.id }}">
 | 
			
		||||
                                                <strong>{% trans "pool"|capfirst %} {{ pool }}</strong>
 | 
			
		||||
                                                <ul id="recap-{{ tournament.id }}-round-{{ round.number }}-pool-{{ pool.get_letter_display }}-team-list"
 | 
			
		||||
@@ -94,13 +94,13 @@
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                        {% endfor %}
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </li>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            {% endfor %}
 | 
			
		||||
                        </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-md-9">
 | 
			
		||||
            <div class="col-md-7 my-3">
 | 
			
		||||
                <div class="card">
 | 
			
		||||
                    <div class="card-body">
 | 
			
		||||
                        <div id="messages-{{ tournament.id }}" class="alert alert-info">
 | 
			
		||||
@@ -163,7 +163,7 @@
 | 
			
		||||
                    <div id="tables-{{ tournament.id }}-round-{{ round.number }}" class="card-body">
 | 
			
		||||
                        {% for pool in round.pool_set.all %}
 | 
			
		||||
                            {% if pool.teamdraw_set.count %}
 | 
			
		||||
                                <div class="card">
 | 
			
		||||
                                <div class="card my-3">
 | 
			
		||||
                                    <div class="card-header">
 | 
			
		||||
                                        <h3>
 | 
			
		||||
                                            {% trans "pool"|capfirst %} {{ pool }}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user