parent
4c9213ce23
commit
ea7be53272
@ -0,0 +1,12 @@ |
|||||||
|
{% load static %} |
||||||
|
|
||||||
|
<div class="table-row-4-colums bottom-border"> |
||||||
|
|
||||||
|
<div class="table-cell table-cell-large semibold"> |
||||||
|
<a href="{% url 'index' %}?club={{ club.id }}">{{ club.name }}</a> |
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- <div class="table-cell center">{{ summon.weight }}</div> |
||||||
|
<div class="table-cell large center">{{ summon.date|date:'H:i' }}</div> |
||||||
|
<div class="table-cell"><div class="mybox center">{{ summon.stage }}</div></div> --> |
||||||
|
</div> |
||||||
@ -0,0 +1,32 @@ |
|||||||
|
{% extends 'tournaments/base.html' %} |
||||||
|
|
||||||
|
{% block head_title %}Clubs{% endblock %} |
||||||
|
{% block first_title %}Padel Club{% endblock %} |
||||||
|
{% block second_title %}Clubs{% endblock %} |
||||||
|
|
||||||
|
{% load static %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
|
||||||
|
{% include 'tournaments/navigation_base.html' %} |
||||||
|
|
||||||
|
{% if clubs %} |
||||||
|
|
||||||
|
<div class="grid-x padding-bottom"> |
||||||
|
|
||||||
|
<div class="cell medium-6 large-6 my-block"> |
||||||
|
<div class="bubble"> |
||||||
|
{% for club in clubs %} |
||||||
|
|
||||||
|
{% include 'tournaments/club_row.html' %} |
||||||
|
|
||||||
|
{% endfor %} |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
</div> |
||||||
|
|
||||||
|
{% endif %} |
||||||
|
|
||||||
|
{% endblock %} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
|
||||||
|
<nav class="margin10"> |
||||||
|
<a href="{% url 'index' %}" class="mybox">Accueil</a> |
||||||
|
<a href="{% url 'clubs' %}" class="mybox">Clubs</a> |
||||||
|
</nav> |
||||||
Loading…
Reference in new issue