nk20/templates/member/club_list.html

9 lines
216 B
HTML
Raw Normal View History

2019-08-11 21:25:27 +00:00
{% extends "base.html" %}
2019-08-13 16:22:19 +00:00
{% load render_table from django_tables2 %}
2019-08-11 21:25:27 +00:00
{% block content %}
2019-08-13 16:22:19 +00:00
{% render_table object_list %}
2019-08-11 21:25:27 +00:00
<a class="btn btn-primary" href="{% url 'member:club_create' %}">New Club</a>
{% endblock %}