{% extends 'master.twig' %} {% from 'macros.twig' import torrent_listing_entry %} {% if filter_user is null %} {% set title = 'Available Downloads' %} {% else %} {% set title = 'Downloads submitted by ' ~ filter_user.name %} {% endif %} {% set show_more = false %} {% set last_id = 0 %} {% block content %}
{{ title }}
{% if torrents is empty %}
Sorry, nothing.
{% else %} {% for torrent in torrents %} {{ torrent_listing_entry(torrent, 'downloads-item') }} {% set last_id = torrent.info.id %} {% endfor %} {% endif %}
{% if show_more %}
View more
{% endif %}
{% endblock %}