{% extends "base.html" %}
{% block content %}
Current mileage rate for {{ SITES[current_user.site]['label'] }}:
${{ '%.3f'|format(rate) }}/mile (set by administrators).Your expense reports
| Report | Site | {% if current_user.is_admin %}Employee | {% endif %}Total | Status | Created | |
|---|---|---|---|---|---|---|
| {{ r.title }} | {{ SITES[r.site]['label'] }} | {% if current_user.is_admin %}{{ r.user.name }} | {% endif %}${{ '%.2f'|format(r.totals()['grand']) }} | {{ r.status }} | {{ r.created_at.strftime('%b %d, %Y') }} | Export .xlsx |
Create a report, add your expense lines, snap your receipts, and export the finished Excel form for approval.