mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-11 01:19:31 +00:00
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<table class="table table-condensed table-hover table-responsive table-sortable">
|
||||
<table class="table table-condensed table-hover table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
{% if showCategory or showBudget %}
|
||||
@@ -49,7 +49,7 @@
|
||||
<tbody>
|
||||
{% for group in groups %}
|
||||
{% if group.count > 1 %}
|
||||
<tr style="border-top:1px #aaa solid;" class="unsortable">
|
||||
<tr style="border-top:1px #aaa solid;">
|
||||
<td colspan="2" style="border-top:1px #aaa solid;">
|
||||
<small><strong>
|
||||
<a href="{{ route('transactions.show', [group.id]) }}"
|
||||
@@ -104,29 +104,29 @@
|
||||
data-id="{{ group.id }}">
|
||||
<td style=" {{ style|raw }}" class="hidden-xs">
|
||||
{% if transaction.transaction_type_type == 'Withdrawal' %}
|
||||
<span class="object-handle fa fa-long-arrow-left fa-fw"
|
||||
<span class="fa fa-long-arrow-left fa-fw"
|
||||
title="{{ trans('firefly.Withdrawal') }}"></span>
|
||||
{% endif %}
|
||||
|
||||
{% if transaction.transaction_type_type == 'Deposit' %}
|
||||
<span class="object-handle fa fa-long-arrow-right fa-fw"
|
||||
<span class="fa fa-long-arrow-right fa-fw"
|
||||
title="{{ trans('firefly.Deposit') }}"></span>
|
||||
{% endif %}
|
||||
|
||||
{% if transaction.transaction_type_type == 'Transfer' %}
|
||||
<span class="object-handle fa fa-exchange fa-fw" title="{{ trans('firefly.Transfer') }}"></span>
|
||||
<span class="fa fa-exchange fa-fw" title="{{ trans('firefly.Transfer') }}"></span>
|
||||
{% endif %}
|
||||
|
||||
{% if transaction.transaction_type_type == 'Reconciliation' %}
|
||||
<span class="object-handle fa-fw fa fa-calculator"
|
||||
<span class="fa-fw fa fa-calculator"
|
||||
title="{{ trans('firefly.reconciliation_transaction') }}"></span>
|
||||
{% endif %}
|
||||
{% if transaction.transaction_type_type == 'Opening balance' %}
|
||||
<span class="object-handle fa-fw fa fa-star-o"
|
||||
<span class="fa-fw fa fa-star-o"
|
||||
title="{{ trans('firefly.Opening balance') }}"></span>
|
||||
{% endif %}
|
||||
{% if transaction.transaction_type_type == 'Liability credit' %}
|
||||
<span class="object-handle fa-fw fa fa-star-o"
|
||||
<span class="fa-fw fa fa-star-o"
|
||||
title="{{ trans('firefly.Liability credit') }}"></span>
|
||||
{% endif %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user