Commit 7487dc77 authored by Ilham Maulana's avatar Ilham Maulana 💻

fix: member name on table book loan

parent 2178adf4
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
{% if object_list %} {% for loan in object_list %} {% if object_list %} {% for loan in object_list %}
<tr> <tr>
<td>{{ loan.book.title }}</td> <td>{{ loan.book.title }}</td>
<td>{{ loan.member.name }}</td> <td>{{ loan.member.user.username }}</td>
<td>{{ loan.loan_date }}</td> <td>{{ loan.loan_date }}</td>
<td>{{ loan.due_date }}</td> <td>{{ loan.due_date }}</td>
<td>{{ loan.return_date }}</td> <td>{{ loan.return_date }}</td>
......
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