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.
 
 
 
 
padelclub_backend/tournaments/templates/tournaments/club_row.html

18 lines
602 B

{% load static %}
<div class="table-row-1-colum padding10">
<a href="{% url 'index' %}?club={{ club.id }}">
<div class="semibold">
{{ club.name }}
</div>
{% if club.city %}
<div>
{{ club.city|title }}
</div>
{% endif %}
</a>
</div>
{% if not forloop.last %}
<hr/>
{% endif %}