mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Fix bulk editor.
This commit is contained in:
@@ -40,18 +40,8 @@
|
|||||||
{{ journal.description }}</a></td>
|
{{ journal.description }}</a></td>
|
||||||
<td>{{ journal|journalTotalAmount }}</td>
|
<td>{{ journal|journalTotalAmount }}</td>
|
||||||
<td>{{ journal.date.formatLocalized(monthAndDayFormat) }}</td>
|
<td>{{ journal.date.formatLocalized(monthAndDayFormat) }}</td>
|
||||||
<td>
|
<td>{{ journalCategories(journal)|raw }}</td>
|
||||||
{% set cat = journal.categories.first %}
|
<td>{{ journalBudgets(journal)|raw }}</td>
|
||||||
{% 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>
|
<td>
|
||||||
{% for tag in journal.tags %}
|
{% for tag in journal.tags %}
|
||||||
<a class="label label-success" href="{{ route('tags.show', [tag.id]) }}">
|
<a class="label label-success" href="{{ route('tags.show', [tag.id]) }}">
|
||||||
|
@@ -238,15 +238,7 @@
|
|||||||
{% for tag in journal.tags %}
|
{% for tag in journal.tags %}
|
||||||
|
|
||||||
<h4 style="display: inline;"><a class="label label-success" href="{{ route('tags.show',tag) }}">
|
<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>
|
||||||
<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 %}
|
|
||||||
{{ tag.tag }}</a>
|
{{ tag.tag }}</a>
|
||||||
</h4>
|
</h4>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Reference in New Issue
Block a user