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