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.
inventory-app/templates/adjustments-add-form.html

13 lines
393 B

<form hx-post="/item/{{item_id}}/adjustment/new" hx-target="this" hx-swap="outerHTML" >
<div>
<label for="amount">Amount</label>
<input id="amount" name="amount" type="number" >
</div>
<div>
<label for="reason">Reason</label>
<input id="reason" name="reason" type="text" >
</div>
<button class="btn primary">Add Adjustment</button>
</form>

Powered by TurnKey Linux.