Added the get_absolute_url() method to the accounting transactions.

This commit is contained in:
2020-07-01 00:43:46 +08:00
parent 42fe685d53
commit a48a885ed6
2 changed files with 11 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<td>{{ record.debit_amount }}</td>
<td>{{ record.credit_amount }}</td>
<td>{{ record.amount }}</td>
<td><a href="{% url "accounting:transaction" "transfer" record.transaction.sn %}">View</a></td>
<td><a href="{{ record.transaction.get_absolute_url }}">View</a></td>
</tr>
{% endfor %}
</tbody>