{% extends 'base.html.twig' %} {% block content %} {# @var torrent \App\Entity\\App\Entity\Torrent #} {% for torrent in torrents %} {% endfor %}
ID Name Size Discovered Files
{{ torrent.id }} {{ torrent.name }} {{ torrent.totalSize }} {{ torrent.discoveredOn }} {#
    {% for file in torrent.files %}
  • {{ file.path }}
  • {% endfor %}
#}
{% endblock %}