{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n pretty_money perms %} {# Use a fluid-width container #} {% block containertype %}container-fluid{% endblock %} {% block content %}
{% block profile_info %} {% if club %}

{{ 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 'WEI fee (paid students)'|capfirst %}
{{ club.membership_fee_paid|pretty_money }}
{% trans 'WEI fee (unpaid students)'|capfirst %}
{{ club.membership_fee_unpaid|pretty_money }} {% endif %} {% endif %} {% if club.deposit_amount > 0 %}
{% trans 'Deposit amount'|capfirst %}
{{ club.deposit_amount|pretty_money }}
{% endif %} {% if "note.view_note"|has_perm:club.note %}
{% trans 'balance'|capfirst %}
{{ club.note.balance | pretty_money }}
{% endif %} {% if "note.change_alias"|has_perm:club.note.alias.first %}
{% trans 'aliases'|capfirst %}
{{ club.note.alias.all|join:", " }}
{% endif %}
{% trans 'email'|capfirst %}
{{ club.email }}
{% endif %} {% endblock %}
{% block profile_content %}{% endblock %}
{% endblock %}