{% extends "base.html" %} {% block title %}Payouts{% endblock %} {% block page_title %}Payouts{% endblock %} {% block topbar_actions %} {% if user.role == 'admin' %} {% endif %} {% endblock %} {% block content %}
| Date | Employee | Amount | {% if user.role == 'admin' %}Actions | {% endif %}
|---|---|---|---|
| {{ payout.date | fmt_date }} | {{ payout.employee.name if payout.employee else '—' }} | £{{ "%.2f"|format(payout.amount) }} | {% if user.role == 'admin' %}{% endif %} |
| No payouts recorded. | |||