hide cat and bud [skip ci]

This commit is contained in:
James Cole 2020-03-22 08:17:02 +01:00
parent b8696bf8b5
commit 53b77e6bf9
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -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>&nbsp;</th>
<th>&nbsp;</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>