{% for card in [
('Branch Clients', overview.client_count),
('Open Tasks', overview.open_task_count),
('Overdue', overview.overdue_count),
('Review Pending', overview.review_pending_count),
('Due Today', overview.due_today_count),
('Due This Week', overview.due_week_count),
('Client Pending', overview.client_pending_count),
('Outstanding', '₹ ' ~ overview.outstanding)
] %}
{{ card[0] }}
{{ card[1] }}
{% endfor %}