BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

report.twig 908B

1234567891011121314151617181920
  1. {{ paginator.linkbox|raw }}
  2. <div class="box pad">
  3. {% for t in list %}
  4. {% if loop.first %}
  5. <h3>Seeds on {{ source }} that are {{ mode == 'union' ? 'also' : 'not' }} on {{ target }} <small>({{
  6. paginator.total }} seed{{ paginator.total|plural }})</small></h3>
  7. <div class="pad">
  8. <a class="brackets" href="torrents.php?action=collector&amp;title=seedbox&amp;userid={{ user_id
  9. }}&amp;s={{ source_id }}&amp;t={{ target_id }}&amp;m={{ mode }}&amp;auth={{ auth
  10. }}" 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>
  11. </div>
  12. <ul class="stats nobullet">
  13. {% endif %}
  14. <li>{{ t.artist|raw }} - {{ t.name|raw }}<br />{{ t.folder }}</li>
  15. {% if loop.last %}
  16. </ul>
  17. {% endif %}
  18. {% endfor %}
  19. </div>
  20. {{ paginator.linkbox|raw }}