mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "wei/base.html" %}
 | 
						|
 | 
						|
{% load i18n %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
 | 
						|
{% block profile_content %}
 | 
						|
    <div class="card">
 | 
						|
        <div class="card-header text-center">
 | 
						|
            <h3>{% trans "Attribute first year members into buses" %}</h3>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="card-body">
 | 
						|
            {% render_table bus_repartition_table %}
 | 
						|
            <hr>
 | 
						|
            <a href="{% url 'wei:wei_bus_1A_next' pk=club.pk %}" class="btn btn-block btn-success">{% trans "Start attribution!" %}</a>
 | 
						|
            <hr>
 | 
						|
            {% render_table table %}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{% endblock %}
 |