27 lines
551 B
HTML
27 lines
551 B
HTML
{% extends 'theme/base.html' %}
|
|
{% load static i18n %}
|
|
|
|
{% block main %}
|
|
{% include 'components/generic/navbar.html' %}
|
|
<div>
|
|
{% include 'components/products/list_filters.html' %}
|
|
<section
|
|
class="p-8"
|
|
hx-get="{% url 'web:list_products' %}{% querystring request.GET %}"
|
|
hx-trigger="load"
|
|
hx-target="#products"
|
|
hx-swap="innerHTML"
|
|
>
|
|
<div>
|
|
<section id="products">
|
|
|
|
</section>
|
|
|
|
<div class="w-full text-center">
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|