1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

use history table for club detail view

This commit is contained in:
Pierre-antoine Comby
2019-08-15 23:11:52 +02:00
parent be8f2dc35b
commit 3bda5576dd
2 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
{% load static %}
{% load i18n %}
{% load render_table from django_tables2 %}
{% load pretty_money %}
{% block content %}
<p><a class="btn btn-primary" href="{% url 'member:club_list' %}">Clubs</a></p>
<h3 class="text-center"> Club {{ object.name }}</h3>
@ -15,7 +16,7 @@
<dt> Aliases </dt>
<dd>{{ club.note.aliases_set.all }}</dd>
<dt>{% trans 'balance' %}</dt>
<dd>{{ club.note.balance }}</dd>
<dd>{{ club.note.balance | pretty_money }}</dd>
</dl>