{% extends 'base.html' %} {% load static %} {% block title %}Export Bills{% endblock %} {% block css %} {% endblock %} {% block content %}

Export Bills

Export Configuration

{% csrf_token %}
From
To
Hold Ctrl to select multiple
$
Minimum
$
Maximum

Export Preview

Configure export settings to see preview

Recent Exports

{% if recent_exports %}
{% for export in recent_exports %} {% endfor %}
Date Format Records Size Status Actions
{{ export.created_at|date:"M d, Y g:i A" }} {{ export.format|upper }} {{ export.record_count|default:"—" }} {{ export.file_size|default:"—" }} {% if export.status == 'completed' %} Completed {% elif export.status == 'processing' %} Processing {% elif export.status == 'failed' %} Failed {% endif %} {% if export.status == 'completed' %} {% endif %}
{% else %}
No recent exports
{% endif %}
{% endblock %} {% block js %} {% endblock %}