mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
hide cat and bud [skip ci]
This commit is contained in:
parent
b8696bf8b5
commit
53b77e6bf9
@ -24,10 +24,10 @@ TODO: hide and show columns
|
||||
<th>{{ trans('list.source_account') }}</th>
|
||||
<th>{{ trans('list.destination_account') }}</th>
|
||||
{% if showCategory %}
|
||||
<th>{{ trans('list.category') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.category') }}</th>
|
||||
{% endif %}
|
||||
{% if showBudget %}
|
||||
<th>{{ trans('list.budget') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.budget') }}</th>
|
||||
{% endif %}
|
||||
<th> </th>
|
||||
<th> </th>
|
||||
@ -161,7 +161,7 @@ TODO: hide and show columns
|
||||
title="{{ transaction.destination_account_iban|default(transaction.destination_account_name) }}">{{ transaction.destination_account_name }}</a>
|
||||
</td>
|
||||
{% if showCategory %}
|
||||
<td style=" {{ style|raw }}">
|
||||
<td style=" {{ style|raw }}" class="hidden-xs">
|
||||
{% if transaction.category_id %}
|
||||
<a href="{{ route('categories.show', [transaction.category_id]) }}"
|
||||
title="{{ transaction.category_name }}">{{ transaction.category_name }}</a>
|
||||
@ -169,7 +169,7 @@ TODO: hide and show columns
|
||||
</td>
|
||||
{% endif %}
|
||||
{% if showBudget %}
|
||||
<td style=" {{ style|raw }}">
|
||||
<td style=" {{ style|raw }}" class="hidden-xs">
|
||||
{% if transaction.budget_id %}
|
||||
<a href="{{ route('budgets.show', [transaction.budget_id]) }}"
|
||||
title="{{ transaction.budget_name }}">{{ transaction.budget_name }}</a>
|
||||
|
Loading…
Reference in New Issue
Block a user