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.
 
 
 

24 lines
643 B

{% extends 'admin_template.html' %}{% block 'body' %}
<div>
<h3>Interface de gestion :</h3>
<div>
<a href={% url 'app:createNewGame' %}>Créer un nouveau jeu</a>
<p>{{ info }}</p>
</div>
<div>
<table width="100%" border=1 class="table table-striped w-auto table-responsive-lg">
<thead>
<tr>
<th scope="col"></th>{% for equipe in liste_equipe %}
<th scope="col">{{equipe.nom}}</th>{% endfor %}
</tr>
</thead>
<tbody>{% for equipe in liste_equipe %}
<tr>
<td scope="col">{{equipe.nom}}</td>
</tr>{% endfor %}
</tbody>
</table>
</div>
</form>
</div>{% endblock %}