41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<div id="search-results"
|
|
class="min-w-full w-full">
|
|
{% if logged_in and query %}
|
|
<button title="Afegeix un tema"
|
|
class="border border-beige text-beige rounded
|
|
m-1 px-2"
|
|
hx-post="/api/tema"
|
|
hx-include="[name=query]"
|
|
hx-vals="js:{title: document.getElementById('query-input').value}"
|
|
>
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
|
<i>{{ query }}</i>
|
|
</button>
|
|
{% endif %}
|
|
<ul class="min-w-full w-full">
|
|
{% for tema in temes %}
|
|
{% include "fragments/temes/result.html" %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% if prev_offset is not none or next_offset is not none %}
|
|
<div class="py-2">
|
|
{% if prev_offset is not none %}
|
|
<button class="text-beige mx-2"
|
|
hx-get="/api/temes/busca?query={{ query }}&offset={{ prev_offset }}"
|
|
hx-target="#search-results"
|
|
hx-swap="outerHTML">
|
|
<i class="fa fa-chevron-left" aria-hidden="true"></i>
|
|
</button>
|
|
{% endif %}
|
|
{% if next_offset is not none %}
|
|
<button class="text-beige mx-2"
|
|
hx-get="/api/temes/busca?query={{ query }}&offset={{ next_offset }}"
|
|
hx-target="#search-results"
|
|
hx-swap="outerHTML">
|
|
<i class="fa fa-chevron-right" aria-hidden="true"></i>
|
|
</button>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|