{% extends 'base/base.html' %} {% load as_icon %} {% load static %} {% block title %}Resources{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "base/navbar.html" %}

Resources


Search Options

Topic
{% for topic in topics_1 %}
{% endfor %}
{% for topic in topics_2 %}
{% endfor %}
Type
{% for tag_type in tag_types %}
{% endfor %}
Payment
{% for payment_tier in payment_tiers %}
{% endfor %}
Level
{% for complexity in complexities %}
{% endfor %}
{% if resources|length > 0 %}
{% for resource in resources %} {% 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 %}