{% extends 'master.twig' %} {% from 'macros.twig' import torrent_listing_entry %} {% set title = 'Pending Torrents' %} {% set show_more = false %} {% set last_id = 0 %} {% block content %}
Pending Torrents
{% if torrents is empty %}
There are no pending torrents!
{% 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 %}