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.
30 lines
814 B
30 lines
814 B
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Clubs{% endblock %}
|
|
{% block first_title %}Padel Club{% endblock %}
|
|
{% block second_title %}Clubs{% endblock %}
|
|
{% block meta_desc %}Retrouvez la liste de tous les clubs disponibles sur Padel Club{% endblock %}
|
|
{% block meta_keywords %}club,terrain,lieu{% 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 padding10">
|
|
<div class="bubble">
|
|
{% for club in clubs %}
|
|
|
|
{% include 'tournaments/club_row.html' %}
|
|
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|