|  | {% extends "base.html" %}
{% block content %}
<div class="">
    <div class="border-b-2 border-black">
        <div class="pl-44 text my-8 row-span-2 meta max-w-[65ch]">
            {{ text|safe }}
        </div>
    </div>
    
    
    {% 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 %}
</div>
{% endblock %}
 |