You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
|
|
{% for item in items %}
|
|
<article>
|
|
<div class="grid">
|
|
<p>{{ item.create_date }}</p>
|
|
<p>{{ item.item_name }}</p>
|
|
<p>{{ item.user_name }}</p>
|
|
<p>
|
|
{% match item.item_type %}
|
|
{% when HistoryItemEntry::PositiveAdjustment with (entry) %}
|
|
{{ entry.amount }} @ {{ entry.unit_value }}
|
|
{% when HistoryItemEntry::NegativeAdjustment with (entry) %}
|
|
{{ entry.amount }} {{ entry.reason }}
|
|
{% endmatch %}
|
|
</p>
|
|
</div>
|
|
</article>
|
|
{% endfor %} |