mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-09 23:41:10 +00:00
Better text [skip ci]
This commit is contained in:
@@ -122,14 +122,14 @@
|
|||||||
<td>{{ journal.getMeta('invoice_date').formatLocalized(monthAndDayFormat) }}</td>
|
<td>{{ journal.getMeta('invoice_date').formatLocalized(monthAndDayFormat) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if journal.hasMeta('internal_reference') %}
|
{% if journal.hasMeta('internal_reference') and journal.getMeta('internal_reference') != "" %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('list.internal_reference') }}</td>
|
<td>{{ trans('list.internal_reference') }}</td>
|
||||||
<td>{{ journal.getMeta('internal_reference') }}</td>
|
<td>{{ journal.getMeta('internal_reference') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if journal.hasMeta('notes') %}
|
{% if journal.hasMeta('notes') and journal.getMeta('notes') != "" %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('list.notes') }}</td>
|
<td>{{ trans('list.notes') }}</td>
|
||||||
<td>{{ journal.getMeta('notes')|nl2br }}</td>
|
<td>{{ journal.getMeta('notes')|nl2br }}</td>
|
||||||
@@ -237,7 +237,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{% for transaction in transactions %}
|
{% for transaction in transactions %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>#{{ transaction.source_id }}
|
<td>
|
||||||
{% if transaction.description == "" %}
|
{% if transaction.description == "" %}
|
||||||
{{ journal.description }}
|
{{ journal.description }}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|||||||
Reference in New Issue
Block a user