{% extends 'base.html' %} {% block content %}
{% if practices_filter %}
Practices
{% for practice in practices_filter %} {% endfor %}
{% endif %} {% if year_filter %}
Year
{% for year in year_filter %} {% endfor %}
{% endif %} {% if typology_filter %}
Typology category
{% for typology in typology_filter %} {% endfor %}
{% endif %} {% if languages_filter %}
Scripting languages
{% for language in languages_filter %} {% endfor %}
{% endif %} {% if licenses_filter %}
License
{% for license in licenses_filter %} {% endfor %}
{% endif %}
{% for resource in resources %} {% if resource.tools %} TOOLS: {% for tool in resource.tools %} {{ tool.name }}; {% endfor %} {% endif %} {% if resource.practices %} PRACTICES: {% for practice in resource.practices %} {{ practice.name }}; {% endfor %} {% endif %} {% if resource.books %} BOOKS: {% for book in resource.books %} {{ book.name }}; {% endfor %} {% endif %} {{ resource_with_related(resource, loop) }} {% endfor %}
{% endblock %}