{% extends "base.html" %} {% block title %}Payment Batches - Plutus{% endblock %} {% block content %}
| Batch ID | Created | Total Payments | Payment Amount | Stripe Fees | Success Rate | Status | Actions |
|---|---|---|---|---|---|---|---|
| #{{ batch.id }} | {{ batch.Created.strftime('%Y-%m-%d %H:%M') if batch.Created else '-' }} | {{ batch.payment_count or 0 }} | {{ batch.total_amount | currency }} | {{ batch.total_fees | currency }} | {% if batch.payment_count and batch.payment_count > 0 %} {% set success_rate = (batch.successful_count or 0) / batch.payment_count * 100 %} {% if success_rate >= 90 %} {{ "%.1f"|format(success_rate) }}% {% elif success_rate >= 70 %} {{ "%.1f"|format(success_rate) }}% {% else %} {{ "%.1f"|format(success_rate) }}% {% endif %} {% else %} 0% {% endif %} | View Details |
No payment batches found. Return to dashboard.