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.
19 lines
870 B
19 lines
870 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="border border-space-cadet rounded px-4 py-4 me-4">
|
|
<p class="text-xl uppercase text-center">Stock</p>
|
|
<p class="text-xl text-center">{{item.amount}} {{item.display_unit_short}}</p>
|
|
</div>
|
|
<div class="border border-space-cadet rounded px-4 py-4 me-4">
|
|
<p class="text-xl uppercase text-center">Reorder</p>
|
|
<p class="text-xl text-center">{{item.reorder_point}} {{item.display_unit_short}}</p>
|
|
</div>
|
|
<div class="border border-space-cadet rounded px-4 py-4 me-4">
|
|
<p class="text-xl uppercase text-center">Value</p>
|
|
<p class="text-xl text-center">{{value}}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|