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