{% extends 'base.html.twig' %} {% block content %} {# @var torrent \App\Magnetico\Entity\Torrent #}
Name {{ torrent.name }}
Hash {{ torrent.infoHash }}
Size {{ torrent.totalSize | readable_size }}
Discovered {{ torrent.discoveredOn | date('Y-m-d H:i:s')}}
{# @var file \App\Magnetico\Entity\File #} {% for file in torrent.files | sort %} {% endfor %}
File Size
{{ file.path }} {{ file.size | readable_size }}
{% endblock %}