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/item.html

17 lines
421 B

{% extends "main.html" %}
{% block title %} Items {% endblock %}
{% block content %}
<h3>{{item.name}}</h3>
<p>Reorder at: {{item.reorder_point}}</p>
<p>Amount in stock: {{item.amount}} {{item.display_unit_short}}</p>
<div hx-get="/item/{{item_id}}/adjustments" hx-trigger="load" hx-swap="outerHTML">
</div>
<div hx-get="/item/{{item_id}}/adjustment/new" hx-trigger="load" hx-swap="outerHTML">
</div>
{% endblock %}

Powered by TurnKey Linux.