{% extends "store/base.html" %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% load static %} {% block title %}Bills{% endblock title %} {% block content %}
{% comment %}
{{ filter.form }}
{% endcomment %}
Add a Bill Record Export to Excel
{% for bill in bills %} {% endfor %}
ID Name Description Contact Number Email Payment Details Amount Status Action
{{ bill.id }} {{ bill.institution_name }} {{ bill.description }} {{ bill.phone_number }} {{ bill.email }} {{ bill.payment_details }} {{ bill.amount }} {% if bill.status %} Paid {% else %} Pending {% endif %}
{% if is_paginated %} {% endif %}
{% endblock content %}