{% load i18n static pretty_money perms %}

{{ club.name }}

{% trans 'name'|capfirst %}
{{ club.name }}
{% if club.require_memberships %}
{% trans 'date start'|capfirst %}
{{ club.date_start }}
{% trans 'date end'|capfirst %}
{{ club.date_end }}
{% trans 'year'|capfirst %}
{{ club.year }}
{% if club.membership_fee_paid == club.membership_fee_unpaid %}
{% trans 'membership fee'|capfirst %}
{{ club.membership_fee_paid|pretty_money }}
{% else %}
{% trans 'fee (paid students)'|capfirst %}
{{ club.membership_fee_paid|pretty_money }}
{% trans 'fee (unpaid students)'|capfirst %}
{{ club.membership_fee_unpaid|pretty_money }}
{% endif %} {% endif %} {% if "note.view_note"|has_perm:club.note %}
{% trans 'balance'|capfirst %}
{{ object.note.balance | pretty_money }}
{% endif %} {% if "note.change_alias"|has_perm:club.note.alias_set.first %}
{% trans 'aliases'|capfirst %}
{{ object.note.alias_set.all|join:", " }}
{% endif %}
{% trans 'email'|capfirst %}
{{ club.email }}