{% extends "base.html" %} {% block content %}
{{ text|safe }}
LIST VIEW
{% if view == 'list' %} {% for tool in tools %} {{ resource_list(tool, loop, false) }} {% endfor %} {% else %} {% for tool in tools %} {{ resource_with_related(tool, loop, false) }} {% endfor %} {% endif %} {% if view == 'list' %} {% for book in books %} {{ resource_list(book, loop, false) }} {% endfor %} {% else %} {% for book in books %} {{ resource_with_related(book, loop, false) }} {% endfor %} {% endif %}
{% endblock %}