{% extends "base.html" %} {% block content %}
{{ text|safe }}
{{ book_with_related(book, book_relationships, 'Book', 'Related') }} {% for tool in tools %} {{ resource_with_related(tool, 'Tool', 'Used by') }} {% endfor %} {% for book in books %} {{ resource_with_related(book, 'Book', 'Made with') }} {% endfor %} {% for tool in tools2 %} {{ resource_with_related(tool, 'Tool', 'Used by') }} {% endfor %} {% for book in books2 %} {{ resource_with_related(book, 'Book', 'Made with') }} {% endfor %}
{% endblock %}