{% extends "core/base.jinja" %} {% block title %} {% trans %}Club account:{% endtrans %} {{ object.name }} {% endblock %} {% block content %}
{% trans %}Accounting{% endtrans %} > {{object.bank_account }} > {{ object }}
{% trans %}New label{% endtrans %}
{% endif %}{% trans %}Label list{% endtrans %}
{% if not object.has_open_journal() %}{% trans %}New journal{% endtrans %}
{% else %}{% trans %}You can not create new journal while you still have one opened{% endtrans %}
{% endif %}{% trans %}Name{% endtrans %} | {% trans %}Start{% endtrans %} | {% trans %}End{% endtrans %} | {% trans %}Amount{% endtrans %} | {% trans %}Effective amount{% endtrans %} | {% trans %}Closed{% endtrans %} | {% trans %}Actions{% endtrans %} | ||
{{ j.name }} | {{ j.start_date }} | {% if j.end_date %}{{ j.end_date }} | {% else %}- | {% endif %}{{ j.amount }} € | {{ j.effective_amount }} € | {% if j.closed %}{% trans %}Yes{% endtrans %} | {% else %}{% trans %}No{% endtrans %} | {% endif %}{% trans %}View{% endtrans %} {% trans %}Edit{% endtrans %} {% if user.is_in_group(settings.SITH_GROUP_ACCOUNTING_ADMIN_ID) and j.operations.count() == 0 %} {% trans %}Delete{% endtrans %} {% endif %} |