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