nk20/templates/member/club_tables.html

28 lines
851 B
HTML
Raw Normal View History

{% load render_table from django_tables2 %}
{% load i18n %}
2020-04-12 00:07:13 +00:00
{% if member_list.data %}
<div class="card">
<div class="card-header position-relative" id="clubListHeading">
<a class="btn btn-link stretched-link font-weight-bold">
<i class="fa fa-users"></i> {% trans "Member of the Club" %}
</a>
</div>
2020-04-06 17:51:39 +00:00
{% render_table member_list %}
2020-04-12 00:07:13 +00:00
</div>
2020-04-12 00:07:13 +00:00
<hr>
{% endif %}
2020-04-06 17:51:39 +00:00
2020-04-12 00:07:13 +00:00
{% if history_list.data %}
<div class="card">
<div class="card-header position-relative" id="historyListHeading">
<a class="btn btn-link stretched-link font-weight-bold">
<i class="fa fa-euro"></i> {% trans "Transaction history" %}
</a>
</div>
2020-04-06 17:51:39 +00:00
<div id="history_list">
{% render_table history_list %}
</div>
2020-04-12 00:07:13 +00:00
</div>
{% endif %}