{% extends 'master.twig' %} {% set title = torrent_info.name %} {% block content %}

{{ torrent_info.name }}

{% if torrent_info.isApproved and globals.auth_info.isLoggedIn and globals.auth_info.userInfo.canApproveTorrents %}
Approved on
{% endif %}
Total size
{{ torrent_total_size|format_filesize }} ({{ torrent_total_size|number_format }} bytes)
Uploading
{{ torrent_complete_peers|number_format }}
Downloading
{{ torrent_incomplete_peers|number_format }}
{% if torrent_info.isPrivate %}
Visibility
Private
{% endif %}
{% if torrent_user is not null %}
Submitted by
{% endif %} {% if not torrent_info.isApproved and globals.auth_info.isLoggedIn and globals.auth_info.userInfo.canApproveTorrents %}
This torrent is pending approval.
APPROVE DENY
{% endif %} {% if torrent_info.hasComment %}
Description
{{ torrent_info.comment }}
{% endif %}
Files
{% for file in torrent_files %}
{{ file.path }} ({{ file.length|format_filesize }})
{% endfor %}
{% endblock %}