mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix bulk editor.
This commit is contained in:
parent
c9356c1237
commit
b8893bcad7
@ -40,18 +40,8 @@
|
||||
{{ journal.description }}</a></td>
|
||||
<td>{{ journal|journalTotalAmount }}</td>
|
||||
<td>{{ journal.date.formatLocalized(monthAndDayFormat) }}</td>
|
||||
<td>
|
||||
{% set cat = journal.categories.first %}
|
||||
{% if cat %}
|
||||
<a href="{{ route('categories.show', [cat.id]) }}">{{ cat.name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% set bud = journal.budgets.first %}
|
||||
{% if bud %}
|
||||
<a href="{{ route('budgets.show', [bud.id]) }}">{{ bud.name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ journalCategories(journal)|raw }}</td>
|
||||
<td>{{ journalBudgets(journal)|raw }}</td>
|
||||
<td>
|
||||
{% for tag in journal.tags %}
|
||||
<a class="label label-success" href="{{ route('tags.show', [tag.id]) }}">
|
||||
|
@ -238,15 +238,7 @@
|
||||
{% for tag in journal.tags %}
|
||||
|
||||
<h4 style="display: inline;"><a class="label label-success" href="{{ route('tags.show',tag) }}">
|
||||
{% if tag.tagMode == 'nothing' %}
|
||||
<i class="fa fa-fw fa-tag"></i>
|
||||
{% endif %}
|
||||
{% if tag.tagMode == 'balancingAct' %}
|
||||
<i class="fa fa-fw fa-refresh"></i>
|
||||
{% endif %}
|
||||
{% if tag.tagMode == 'advancePayment' %}
|
||||
<i class="fa fa-fw fa-sort-numeric-desc"></i>
|
||||
{% endif %}
|
||||
<i class="fa fa-fw fa-tag"></i>
|
||||
{{ tag.tag }}</a>
|
||||
</h4>
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user