{% extends "base.html" %} {% block content %}

Your expense reports

Current mileage rate for {{ SITES[current_user.site]['label'] }}: ${{ '%.3f'|format(rate) }}/mile (set by administrators).

{% if current_user.is_admin %} {% endif %}
{% if reports %} {% if current_user.is_admin %}{% endif %} {% for r in reports %} {% if current_user.is_admin %}{% endif %} {% endfor %}
ReportSiteEmployeeTotalStatusCreated
{{ r.title }} {{ SITES[r.site]['label'] }}{{ r.user.name }}${{ '%.2f'|format(r.totals()['grand']) }} {{ r.status }} {{ r.created_at.strftime('%b %d, %Y') }} Export .xlsx
{% else %}

No reports yet

Create a report, add your expense lines, snap your receipts, and export the finished Excel form for approval.

{% endif %}
Change my password
{% endblock %}