Код шаблона Django 3:
Код шаблона, представленного на изображении ниже:
<div class="container">
{%if all_reciept_vouchers%}
<br>
<h3>All Reciept vouchers Final Report</h3>
<br>
<br>
<div class="table-responsive">
<table id="example" class="table table-striped table-bordered table-responsive-xl">
<thead class="thead-dark">
<tr>
{# <th>S No.</th>#}
<th>Job No</th>
<th>Invoice No</th>
<th>Party Name</th>
<th>Module</th>
<th>Billed Amount</th>
<th>0-30</th>
<th>31-60</th>
<th>61-90</th>
<th>91-120</th>
<th>Pending Amount</th>
</tr>
</thead>
<tbody>
{% for item in all_reciept_vouchers %}
<tr>
{# <td>{{ }} </td>#}
<td>{{ item.job_no}} </td>
<td>{{ item.invoice_no}} </td> -
<td>{{ item.party_name}} </td>
<td>{{ item.module}} </td>
<td>{{ item.invoice_amount}}</td>
{% if item.no_of_days >= 0 and item.no_of_days <= 30 %}
<td> {{item.reciept_net_amount}} </td>
{% else %}
<td> </td>
{% endif %}
{% if item.no_of_days >= 31 and item.no_of_days <= 60 %}
<td>{{ item.reciept_net_amount}} </td>
{% else %}
<td> </td>
{% endif %}
{% if item.no_of_days >= 61 and item.no_of_days <= 90 %}
<td>{{ item.reciept_net_amount}} </td>
{% else %}
<td> </td>
{% endif %}
{% if item.no_of_days >= 91 and item.no_of_days <= 120 %}
<td>{{ item.reciept_net_amount}} </td>
{% else %}
<td> </td>
{% endif %}
<td>{{ item.pending_amount}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{%else%}
<h3>You Don't have any all_reciept_vouchers</h3>
{%endif%}
</div>
Это мой windows выглядит так, но мне нужны значения в одна строка, а не несколько строк, если номер задания такой же. Если номер задания отличается, значение отображается в другой строке, но если номер задания совпадает, отображается значение в одной строке ....