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_list.html

22 lines
493 B

{% extends "main.html" %}
{% block title %} Items {% endblock %}
{% block content %}
<p>
<input id="search" type="search" name="q"
placeholder="Search"
aria-label="Search"
value='{{ query.search.as_deref().unwrap_or("") }}'
hx-get="/items"
hx-trigger="search, keyup delay:200ms changed"
hx-target="#items"
/>
</p>
<div id="items" class="container">
{% include "item_list_fragment.html" %}
</div>
{% endblock %}

Powered by TurnKey Linux.