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.
31 lines
660 B
31 lines
660 B
{% 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 %}
|
|
|