Removed the account code from the account list with unapplied original line items for mobile screens.
This commit is contained in:
parent
412da170e1
commit
b505e380df
@ -59,7 +59,10 @@ First written: 2023/4/8
|
|||||||
<div class="accounting-report-table-body">
|
<div class="accounting-report-table-body">
|
||||||
{% for account in report.accounts %}
|
{% for account in report.accounts %}
|
||||||
<a class="accounting-report-table-row" href="{{ url_for("accounting-report.unapplied", currency=report.currency, account=account, period=report.period) }}">
|
<a class="accounting-report-table-row" href="{{ url_for("accounting-report.unapplied", 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>
|
<div class="accounting-amount">{{ account.count }}</div>
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user