gestiojeux/inventory/templates/inventory/search.html
2021-01-05 22:10:21 +01:00

27 lines
817 B
HTML

{% extends "base.html" %}
{% block "content" %}
<h1>Recherche</h1>
<form class="search" method="get">
{{ form.q }}
<button type="submit"><i class="fa fa-fw fa-search" aria-hidden="true"></i></button>
</form>
{% if query %}
<hr/>
{% for result in page_obj.object_list %}
{% if result.model_name == "game" %}
{% include "./partials/game_item.html" with game=result.object %}
{% elif result.model_name == "category" %}
{% include "./partials/category_item.html" with category=result.object %}
{% elif result.model_name == "tag" %}
{% include "./partials/tag_item.html" with tag=result.object %}
{% endif %}
{% empty %}
Aucun résultat trouvé
{% endfor %}
{% include "partials/pagination.html" %}
{% endif %}
{% endblock %}