{% extends 'base/base.html' %} {% load as_icon %} {% load as_css_class %} {% load get_category_icon %} {% load static %} {% block title %}Resources{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "base/navbar.html" %} {% if resources|length > 0 %}
{# Filtering toolbox #}
{# Actual resources #}
{% for resource in resources.values %} {% include "resources/resource_box.html" %} {% endfor %} {% for subcategory in subcategories %}

{{ subcategory.category_info.name }}

{{ subcategory.category_info.description|safe }}

{% for resource in subcategory.resources %} {% with category_info=subcategory.category_info %} {% include "resources/resource_box.html" %} {% endwith %} {% endfor %} {% endfor %}
{% else %}

No resources matching search.

{% endif %} {% endblock %}