{% extends "store/base.html" %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% load static %} {% block title %}Bills{% endblock title %} {% block content %}
| ID | Name | Description | Contact Number | 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 %} |