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

24 lines
527 B

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

Powered by TurnKey Linux.