{% extends 'admin/custom_base.html' %} {% block body %}

{{ categories[category].label }} {{ total }}

{% if search %}Clear{% endif %}
{% for cat_key, cat_info in categories.items() %} {{ cat_info.label }} {{ cat_counts.get(cat_key, 0) }} {% endfor %}
{% if not files %}

No {{ categories[category].label|lower }} found{% if search %} matching "{{ search }}"{% endif %}.

{% else %} {% if category in ('Texture2D', 'Sprite') %}
{% for f in files %} {% set url = '/assets/' + category + '/' + f %}
{{ f }}
{{ f.rsplit('.', 1)[0] }}
Download
{% endfor %}
{% elif category == 'AudioClip' %}
{% for f in files %} {% set url = '/assets/' + category + '/' + f %}
{{ f }}
Download
{% endfor %}
{% elif category == 'Font' %}
{% for f in files %} {% set url = '/assets/' + category + '/' + f %}
The quick brown fox jumps over the lazy dog
{{ f }} Download
{% endfor %}
{% elif category in ('TextAsset', 'Shader', 'MonoBehaviour') %} {% for f in files %} {% set url = '/assets/' + category + '/' + f %} {% endfor %}
NameActions
{{ f }} View Download
{% endif %} {% if pages > 1 %} {% endif %} {% endif %}
{% endblock %}