No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

43 líneas
776B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="">
  4. <div class="border-b-2 border-black">
  5. <div class="pl-44 text my-8 row-span-2 meta max-w-[65ch]">
  6. {{ text|safe }}
  7. </div>
  8. </div>
  9. {{ book_with_related(book, book_relationships, 'Book', 'Related') }}
  10. {% for tool in tools %}
  11. {{ resource_with_related(tool, 'Tool', 'Used by') }}
  12. {% endfor %}
  13. {% for book in books %}
  14. {{ resource_with_related(book, 'Book', 'Made with') }}
  15. {% endfor %}
  16. {% for tool in tools2 %}
  17. {{ resource_with_related(tool, 'Tool', 'Used by') }}
  18. {% endfor %}
  19. {% for book in books2 %}
  20. {{ resource_with_related(book, 'Book', 'Made with') }}
  21. {% endfor %}
  22. </div>
  23. {% endblock %}