{% extends "base.html" %} {% load justmyresource %} {% block title %}Icon Browser - django-justmyresource Example{% endblock %} {% block content %}
{% if selected_pack %} {% if resources %}
{% for resource in resources %}
{% icon resource.name %}
{{ resource.display_name }}
{% endfor %}
{% else %}

No icons found in this pack.

{% endif %} {% else %}

Select a resource pack from the dropdown above to view its icons.

{% endif %} {% endblock %}