1234567891011121314151617181920 |
- {{ paginator.linkbox|raw }}
- <div class="box pad">
- {% for t in list %}
- {% if loop.first %}
- <h3>Seeds on {{ source }} that are {{ mode == 'union' ? 'also' : 'not' }} on {{ target }} <small>({{
- paginator.total }} seed{{ paginator.total|plural }})</small></h3>
- <div class="pad">
- <a class="brackets" href="torrents.php?action=collector&title=seedbox&userid={{ user_id
- }}&s={{ source_id }}&t={{ target_id }}&m={{ mode }}&auth={{ auth
- }}" onclick="return confirm('If you do not have the content, your ratio WILL be affected; be sure to check the size of all torrents before downloading.');">Download All</a>
- </div>
- <ul class="stats nobullet">
- {% endif %}
- <li>{{ t.artist|raw }} - {{ t.name|raw }}<br />{{ t.folder }}</li>
- {% if loop.last %}
- </ul>
- {% endif %}
- {% endfor %}
- </div>
- {{ paginator.linkbox|raw }}
|