{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Per Diem'} ] %} {{ page_header( icon_class='fas fa-money-bill-alt', title_text='Per Diem Claims', subtitle_text='Manage daily allowance claims', breadcrumbs=breadcrumbs, actions_html='
' ) }}Total Claims
{{ pagination.total if pagination else (per_diem_claims|length) }}
Total Amount
€{{ '%.2f'|format(total_amount) }}
| {% endif %} | Period | Purpose | Location | Days | Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
| {% endif %} |
{{ claim.start_date.strftime('%Y-%m-%d') }} to {{ claim.end_date.strftime('%Y-%m-%d') }} |
{{ claim.trip_purpose }}
{% if claim.project %}
{{ claim.project.name }}
{% endif %}
|
{{ claim.city + ', ' if claim.city else '' }}{{ claim.country }} | {{ claim.total_days if claim.total_days else ((claim.full_days or 0) + (claim.half_days or 0) * 0.5) }} | {{ claim.currency_code or 'EUR' }} {{ '%.2f'|format(claim.calculated_amount or 0) }} | {% if claim.status == 'pending' %} Pending {% elif claim.status == 'approved' %} Approved {% elif claim.status == 'rejected' %} Rejected {% elif claim.status == 'reimbursed' %} Reimbursed {% else %} {{ claim.status|title }} {% endif %} | View |