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.
26 lines
845 B
26 lines
845 B
<section
|
|
hx-get="/item/{{item_id}}/stats"
|
|
hx-trigger="new-adjustment from:body"
|
|
hx-swap="outerHTML"
|
|
class="mb-4"
|
|
>
|
|
<div class="flex justify-start">
|
|
<div class="me-4 rounded border border-space-cadet px-4 py-4">
|
|
<p class="text-center text-xl uppercase">Stock</p>
|
|
<p class="text-center text-xl">
|
|
{{item.amount}} {{item.display_unit_short}}
|
|
</p>
|
|
</div>
|
|
<div class="me-4 rounded border border-space-cadet px-4 py-4">
|
|
<p class="text-center text-xl uppercase">Reorder</p>
|
|
<p class="text-center text-xl">
|
|
{{item.reorder_point}} {{item.display_unit_short}}
|
|
</p>
|
|
</div>
|
|
<div class="me-4 rounded border border-space-cadet px-4 py-4">
|
|
<p class="text-center text-xl uppercase">Value</p>
|
|
<p class="text-center text-xl">{{value}}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|