mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Make opening balance not click-able.
This commit is contained in:
parent
74e3f6dee5
commit
a40859c0bb
@ -1,7 +1,14 @@
|
||||
<div class="list-group">
|
||||
{% for journal in transactions %}
|
||||
|
||||
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}" href="{{ route('transactions.show',journal.id) }}">
|
||||
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}"
|
||||
|
||||
{% if journal.isOpeningBalance %}
|
||||
href="#"
|
||||
{% else %}
|
||||
href="{{ route('transactions.show',journal.id) }}"
|
||||
{% endif %}
|
||||
>
|
||||
|
||||
{{ journal|typeIcon }}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user