{% extends "web/_base.html" %} {% block navbar_left %} {{ block.super }} {% include "web/_collection-menu.html" with collection=collection only %} {% endblock %} {% block title %}Search collection {{ collection.name }}@{{ collection.category }}{% endblock %} {% block content %}

Search {{ collection.name }}@{{ collection.category }} collection

{{ form.as_p }}
{% if item_list %} {% for item in item_list %} {% endfor %}
Category {% include "web/_order.html" with name="category" order=order asc=asc only %} Name {% include "web/_order.html" with name="name" order=order asc=asc only %} Created at {% include "web/_order.html" with name="created_at" order=order asc=asc only %} Details
{{ item.category }} {{ item.name }} {{ item.created_at|date:"Y-m-d H:i" }}
{% else %}

No results.

{% endif %} {% include "web/_pagination.html" %} {% endblock %}