{% extends 'base.html' %} {% load bootstrap3 %} {% block title %} Create Reimbursement for User {{ reimbursement_user }} | {{ block.super }} {% endblock %} {% block content %}

Create Reimbursement for User {{ reimbursement_user }}

The following approved expenses will be covered by this reimbursement:

{% for expense in expenses %} {% endfor %}
Description Amount Invoice Responsible Team
{{ expense.description }} {{ expense.amount }} {{ expense.invoice }} {{ expense.responsible_team }} Team

The total amount for this reimbursement will be {{ total_amount.amount__sum }} DKK

{% csrf_token %} {% bootstrap_form form %} {% bootstrap_button " Approve" button_type="submit" button_class="btn-success" name="approve" %} Cancel
{% endblock content %}