1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-24 03:08:47 +02:00

List pre-registrations (TODO: filter)

This commit is contained in:
Yohann D'ANELLO
2020-04-12 04:29:44 +02:00
parent 6b8e9d45fd
commit bdb0f677e5
4 changed files with 119 additions and 10 deletions

View File

@ -57,6 +57,8 @@
</div>
</div>
<hr>
{% if member_list.data %}
<div class="card">
<div class="card-header position-relative" id="clubListHeading">
@ -81,4 +83,34 @@
{% render_table history_list %}
</div>
</div>
<hr>
{% endif %}
{% if pre_registrations.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-user-plus"></i> {% trans "Unvalidated registrations" %}
</a>
</div>
<div id="history_list">
{% render_table pre_registrations %}
</div>
</div>
<hr>
{% endif %}
{% if all_registrations.data or True %}
<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-user-plus"></i> {% trans "All registrations" %}
</a>
</div>
<div id="history_list">
{% render_table all_registrations %}
</div>
</div>
{% endif %}