Files
PaymentRecon_Code/templates/unreleased_gst.html

36 lines
883 B
HTML
Raw Normal View History

2025-11-21 12:10:45 +05:30
{% extends "base.html" %}
{% block content %}
<div class="container">
<h2>🚫 GST Release Not Filled</h2>
<table border="1" cellpadding="8" cellspacing="0">
<thead>
<tr>
<th>PMC No</th>
<th>Invoice No</th>
<th>Invoice Details</th>
<th>GST_SD_Amount</th>
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
<td>{{ row.PMC_No }}</td>
<td>{{ row.Invoice_No }}</td>
<td>{{ row.Invoice_Details }}</td>
<td>{{ row.GST_SD_Amount }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if data|length == 0 %}
<p><strong>✅ All invoices have GST releases.</strong></p>
{% endif %}
</div>
{% endblock %}