Commit 74311a8d authored by impfundev's avatar impfundev

fix: layout and empty data on reports

parent ab59db25
......@@ -38,7 +38,6 @@
</tr>
{% endfor %} {% else %}
<tr class="w-100">
<td></td>
<td></td>
<td></td>
<td></td>
......@@ -48,7 +47,6 @@
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
{% endif %}
</tbody>
......
......@@ -18,7 +18,13 @@
<td>{{ loan.due_date }}</td>
<td>{{ loan.loan_date }}</td>
</tr>
{% endfor %} {% endif %}
{% endfor %} {% else %}
<tr>
<td>No Data</td>
<td></td>
<td></td>
</tr>
{% endif %}
</tbody>
</table>
</div>
......@@ -15,7 +15,12 @@
<td>{{ loan.book.title }}</td>
<td>{{ loan.due_date }}</td>
</tr>
{% endfor %} {% endif %}
{% endfor %} {% else %}
<tr>
<td>No Data</td>
<td></td>
</tr>
{% endif %}
</tbody>
</table>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment