Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ilham Maulana
library-app-django
Commits
74311a8d
Commit
74311a8d
authored
Jul 02, 2024
by
impfundev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: layout and empty data on reports
parent
ab59db25
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
book_loan_table_data.html
book_loans/templates/book_loan_table_data.html
+0
-2
near_overdue_loan.html
dashboards/templates/dashboard/near_overdue_loan.html
+7
-1
overdue_loan.html
dashboards/templates/dashboard/overdue_loan.html
+6
-1
No files found.
book_loans/templates/book_loan_table_data.html
View file @
74311a8d
...
@@ -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>
...
...
dashboards/templates/dashboard/near_overdue_loan.html
View file @
74311a8d
...
@@ -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>
dashboards/templates/dashboard/overdue_loan.html
View file @
74311a8d
...
@@ -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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment