mirror of https://gitlab.crans.org/bde/nk20
28 lines
851 B
HTML
28 lines
851 B
HTML
{% load render_table from django_tables2 %}
|
|
{% load i18n %}
|
|
{% 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>
|
|
{% render_table member_list %}
|
|
</div>
|
|
|
|
<hr>
|
|
{% endif %}
|
|
|
|
{% 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>
|
|
<div id="history_list">
|
|
{% render_table history_list %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|