Commit 74311a8d authored by impfundev's avatar impfundev

fix: layout and empty data on reports

parent ab59db25
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
</tr> </tr>
{% endfor %} {% else %} {% endfor %} {% else %}
<tr class="w-100"> <tr class="w-100">
<td></td>
<td></td> <td></td>
<td></td> <td></td>
<td></td> <td></td>
...@@ -48,7 +47,6 @@ ...@@ -48,7 +47,6 @@
<td></td> <td></td>
<td></td> <td></td>
<td></td> <td></td>
<td></td>
</tr> </tr>
{% endif %} {% endif %}
</tbody> </tbody>
......
...@@ -18,7 +18,13 @@ ...@@ -18,7 +18,13 @@
<td>{{ loan.due_date }}</td> <td>{{ loan.due_date }}</td>
<td>{{ loan.loan_date }}</td> <td>{{ loan.loan_date }}</td>
</tr> </tr>
{% endfor %} {% endif %} {% endfor %} {% else %}
<tr>
<td>No Data</td>
<td></td>
<td></td>
</tr>
{% endif %}
</tbody> </tbody>
</table> </table>
</div> </div>
...@@ -15,7 +15,12 @@ ...@@ -15,7 +15,12 @@
<td>{{ loan.book.title }}</td> <td>{{ loan.book.title }}</td>
<td>{{ loan.due_date }}</td> <td>{{ loan.due_date }}</td>
</tr> </tr>
{% endfor %} {% endif %} {% endfor %} {% else %}
<tr>
<td>No Data</td>
<td></td>
</tr>
{% endif %}
</tbody> </tbody>
</table> </table>
</div> </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