Removed the account code from the account list with unmatched offsets for mobile screens.

This commit is contained in:
依瑪貓 2023-04-18 07:10:26 +08:00
parent b505e380df
commit 5468010c87

View File

@ -59,7 +59,10 @@ First written: 2023/4/17
<div class="accounting-report-table-body">
{% for account in report.accounts %}
<a class="accounting-report-table-row" href="{{ url_for("accounting-report.unmatched", currency=report.currency, account=account, period=report.period) }}">
<div>{{ account }}</div>
<div>
<span class="d-none d-md-inline">{{ account.code }}</span>
{{ account.title|title }}
</div>
<div class="accounting-amount">{{ account.count }}</div>
</a>
{% endfor %}