{% extends 'master.twig' %} {% from 'macros.twig' import torrent_listing_entry %} {% set title = profile_user.name %} {% set profile_ratio = profile_user.calculateRatio %} {% block content %}
Ratio {{ profile_ratio|number_format(3) }} Uploaded {{ profile_user.bytesUploaded|format_filesize }} Downloaded {{ profile_user.bytesDownloaded|format_filesize }} Seeding {{ profile_uploading|number_format }} Leeching {{ profile_downloading|number_format }}
{% if profile_submissions is not empty %}
Latest Submissions
{% for torrent in profile_submissions %} {{ torrent_listing_entry(torrent, 'profile-submission') }} {% endfor %}
{% endif %}
Latest Transfers
todo: keep track of this
{% endblock %}