mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 16:40:10 +00:00
hide cat and bud [skip ci]
This commit is contained in:
@@ -24,10 +24,10 @@ TODO: hide and show columns
|
|||||||
<th>{{ trans('list.source_account') }}</th>
|
<th>{{ trans('list.source_account') }}</th>
|
||||||
<th>{{ trans('list.destination_account') }}</th>
|
<th>{{ trans('list.destination_account') }}</th>
|
||||||
{% if showCategory %}
|
{% if showCategory %}
|
||||||
<th>{{ trans('list.category') }}</th>
|
<th class="hidden-xs">{{ trans('list.category') }}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if showBudget %}
|
{% if showBudget %}
|
||||||
<th>{{ trans('list.budget') }}</th>
|
<th class="hidden-xs">{{ trans('list.budget') }}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<th> </th>
|
<th> </th>
|
||||||
<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>
|
title="{{ transaction.destination_account_iban|default(transaction.destination_account_name) }}">{{ transaction.destination_account_name }}</a>
|
||||||
</td>
|
</td>
|
||||||
{% if showCategory %}
|
{% if showCategory %}
|
||||||
<td style=" {{ style|raw }}">
|
<td style=" {{ style|raw }}" class="hidden-xs">
|
||||||
{% if transaction.category_id %}
|
{% if transaction.category_id %}
|
||||||
<a href="{{ route('categories.show', [transaction.category_id]) }}"
|
<a href="{{ route('categories.show', [transaction.category_id]) }}"
|
||||||
title="{{ transaction.category_name }}">{{ transaction.category_name }}</a>
|
title="{{ transaction.category_name }}">{{ transaction.category_name }}</a>
|
||||||
@@ -169,7 +169,7 @@ TODO: hide and show columns
|
|||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if showBudget %}
|
{% if showBudget %}
|
||||||
<td style=" {{ style|raw }}">
|
<td style=" {{ style|raw }}" class="hidden-xs">
|
||||||
{% if transaction.budget_id %}
|
{% if transaction.budget_id %}
|
||||||
<a href="{{ route('budgets.show', [transaction.budget_id]) }}"
|
<a href="{{ route('budgets.show', [transaction.budget_id]) }}"
|
||||||
title="{{ transaction.budget_name }}">{{ transaction.budget_name }}</a>
|
title="{{ transaction.budget_name }}">{{ transaction.budget_name }}</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user