#38 User requests

* implements 1) "Add titles to public reports, next to identifiers"
This commit is contained in:
2021-11-15 11:05:39 +01:00
parent 61b92c1409
commit a0df7f4fe1
4 changed files with 5 additions and 5 deletions

View File

@@ -50,7 +50,7 @@
<td class="align-middle">
{% for comp in obj.compensations.all %}
<a href="{% url 'compensation:report' comp.id %}">
{{comp.identifier}}
{{comp.identifier}} - {{comp.title}}
</a>
<br>
{% empty %}
@@ -63,7 +63,7 @@
<td class="align-middle">
{% for deduction in deductions %}
<a href="{% url 'compensation:acc-report' deduction.account.id %}">
{{deduction.account.identifier}}
{{deduction.account.identifier}} - {{deduction.account.title}}
</a>
<br>
{% endfor %}