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.
27 lines
698 B
27 lines
698 B
{% extends "main.html" %}
|
|
|
|
{% block title %} Items {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<p class="container d-flex justify-content-center">
|
|
<input id="search" class="form-control"
|
|
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>
|
|
|
|
</div>
|
|
|
|
{% endblock %} |