{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} invite-waiter {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans 'Excursion' %}: {{ memberlist.name }}

{% blocktrans %} Here you see an estimate on the expected costs and contributions by the association. This is not a guaranteed cost plan! {% endblocktrans %}

{% translate "Expenses" %}

{% blocktrans %}You listed the following expenses:{% endblocktrans %}

{% for bill in memberlist.statement.bill_set.all %} {% endfor %}
{% trans "Explanation" %} {% trans "Amount" %}
{{bill.short_description}} {{bill.explanation}} {{ bill.amount }}€

{% blocktrans %}The total expected expenses are {{ total_bills_theoretic }} €.{% endblocktrans %}

{% trans "Contributions by the association" %}

{% blocktrans %}According to the contribution guidelines, {{ staff_count }} youth leader(s) receive contributions. Each of them receives{% endblocktrans %}

{% blocktrans %}In total these are contributions of {{ total_per_yl }}€ times {{ staff_count }}, giving {{ total_staff }}€.{% endblocktrans %}

{% trans "LJP contributions" %}

{% blocktrans %}By submitting a seminar report, you may apply for LJP contributions. In this case, you may obtain up to 25€ times {{ duration }} days for {{ participant_count }} participants but only up to 90% of the total costs. This results in a total of {{ ljp_contributions }}€.{% endblocktrans %}

{% trans "Summary" %}

{% blocktrans %}This is the estimated cost and contribution summary:{% endblocktrans %}

{% trans "Expenses" %} {{ total_bills_theoretic }}€
{% trans "Contributions by the association" %} -{{ total_staff }}€
{% trans "Potential LJP contributions" %} -{{ ljp_contributions }}€
{% trans "Remaining costs" %} {{ total_relative_costs }}€

{% blocktrans %}Positive remaining costs indicate that the estimated costs exceed the estimated contributions, while negative remaining costs indicate that the estimated contributions exceed the estimated costs.{% endblocktrans %}

{% blocktrans %}Note that this cost calculation expects you to apply for LJP contributions. On the excursions main page, you can generate a template for a seminar report.{% endblocktrans %}

{% if not memberlist.statement.submitted %}

{% trans "Submit statement" %}

{% blocktrans %}Did you already complete this excursion? If yes, please check if all listed expenses are correct and then submit the statement for processing by the finance department. If you proceed, no further changes to the statement are possible.{% endblocktrans %}

{% csrf_token %} {% translate "Cancel" %}
{% else %}

{% trans "Statement submitted" %}

{% blocktrans %}The statement for this excursion was already submitted. The finance department is currently processing your data and you will receive a response shortly.{% endblocktrans %}

{% translate "Back" %} {% endif %} {% endblock %}