1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-06 15:23:00 +00:00
nk20/apps/member/templates/member/club_list.html

16 lines
375 B
HTML
Raw Normal View History

2020-08-21 23:20:45 +02:00
{% extends "base_search.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n perms %}
2019-08-11 23:25:27 +02:00
{% block content %}
2020-08-21 23:20:45 +02: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 21:49:32 +02:00
2020-08-21 23:20:45 +02:00
{# Search panel #}
{{ block.super }}
2020-08-25 16:30:02 +02:00
{% endblock %}