{% extends 'base.html' %} {% block title %}Picker Payouts — Admin{% endblock %} {% block content %}
Admin Portal

Picker Payouts

← Back to portal

Earnings are recorded automatically (one per delivered order, equal to the delivery fee). Paying a picker marks all of their currently pending earnings as paid in one go — pay on the cadence they've chosen (daily or weekly).

{% for p in pickers %} {% empty %} {% endfor %}
Picker Payout cadence Pending Already paid Action
{{ p.name }}
{{ p.email }}
{{ p.payout_frequency }} TSh {{ p.pending_amount|floatformat:0 }} {% if p.pending_count %}
{{ p.pending_count }} deliver{{ p.pending_count|pluralize:"y,ies" }}{% endif %}
TSh {{ p.paid_amount|floatformat:0 }} {% if p.pending_amount > 0 %}
{% csrf_token %}
{% else %} Nothing due {% endif %}
No picker earnings recorded yet.
{% endblock %}