1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-29 20:02:59 +00:00
nk20/apps/member/templates/member/club_list.html

16 lines
375 B
HTML
Raw Normal View History

2020-08-21 21:20:45 +00:00
{% extends "base_search.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n perms %}
2019-08-11 21:25:27 +00:00
{% block content %}
2020-08-21 21:20:45 +00:00
{% if can_add_club %}
<a class="btn btn-block btn-success mb-3" href="{% url 'member:club_create' %}" data-turbolinks="false">
{% trans "Create club" %}
</a>
{% endif %}
2019-08-15 19:49:32 +00:00
2020-08-21 21:20:45 +00:00
{# Search panel #}
{{ block.super }}
2020-08-25 14:30:02 +00:00
{% endblock %}