{% if results %}
{% for header in result_headers %} {% if 'checkbox' not in header.text %}
{{ header.text|capfirst }}
{% endif %} {% endfor %}
{% for result in results %}
  • {% for item in result %}
    {% if item.ctype == 'Folder' %} {% elif item.text == '' %} {% else %} {% endif %} {{ item.action_checkbox.repr }}
    {{ item.title_with_class.repr }} {{item.title}}
    {{ item.created_at.repr }}
    {% endfor %}
  • {% endfor %}
    {% endif %}