{% extends base_template %} {% load debusine %} {% 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 items %} {% for item in items %} {% 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 }} {% if item.artifact %} {{ item.name }} {% elif item.collection %} {{ item.name }} {% else %} {{ item.name }} {% endif %} {{ item.created_at|date:"Y-m-d H:i" }}
{% ui_shortcuts item as shortcuts %} {% for shortcut in shortcuts %} {% widget shortcut %} {% endfor %}
{% else %}

No results.

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