mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Add bill / category and budget info
This commit is contained in:
@@ -104,13 +104,19 @@
|
||||
<a href="{{ route('accounts.show', [journal.destination_account_id]) }}" title="{{ journal.destination_account_iban|default(journal.destination_account_name) }}">{{ journal.destination_account_name }}</a>
|
||||
</td>
|
||||
<td class="hide-budget">
|
||||
{# TODO BUDGET #}
|
||||
{% if journal.budget_id %}
|
||||
<a href="{{ route('budgets.show', [journal.budget_id]) }}" title="{{ journal.budget_name }}">{{ journal.budget_name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="hide-category">
|
||||
{# TODO CATEGORY#}
|
||||
{% if journal.category_id %}
|
||||
<a href="{{ route('categories.show', [journal.category_id]) }}" title="{{ journal.category_name }}">{{ journal.category_name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="hide-bill">
|
||||
{#TODO BILL#}
|
||||
{% if journal.bill_id %}
|
||||
<a href="{{ route('bills.show', [journal.bill_id]) }}" title="{{ journal.bill_name }}">{{ journal.bill_name }}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
<!-- new optional fields (2x) -->
|
||||
|
Reference in New Issue
Block a user