{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Per Diem', 'url': url_for('per_diem.list_per_diem')}, {'text': 'Rates'} ] %} {{ page_header( icon_class='fas fa-list-alt', title_text='Per Diem Rates', subtitle_text='Manage per diem rates by location', breadcrumbs=breadcrumbs, actions_html='New Rate' ) }}
| Location | Full Day Rate | Half Day Rate | Currency | Effective From | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ rate.city + ', ' if rate.city else '' }}{{ rate.country }}
|
{{ '%.2f'|format(rate.full_day_rate) }} | {{ '%.2f'|format(rate.half_day_rate) }} | {{ rate.currency_code }} |
{{ rate.effective_from.strftime('%Y-%m-%d') }}
{% if rate.effective_to %}
to {{ rate.effective_to.strftime('%Y-%m-%d') }} {% endif %} |
{% if rate.is_active %} Active {% else %} Inactive {% endif %} | |
|
No per diem rates found Create your first rate |
||||||