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.

torrents.twig 1.1KB

1234567891011121314151617181920
  1. <table width"=100%" class="torrent_table">
  2. {% for id, row in results %}
  3. <tr class="torrent torrent_row{{ row.snatched ? ' snatched_torrent' : '' }}">
  4. <td>
  5. <span class="torrent_links_block">
  6. <a href="torrents.php?action=download&amp;id={{ id }}&amp;authkey={{ auth_key }}&amp;torrent_pass={{ torrent_pass }}" class="brackets tooltip" title="Download">DL</a>
  7. {% if row.token %}
  8. | <a href="torrents.php?action=download&amp;id={{ id }}&amp;authkey={{ auth_key }}&amp;torrent_pass={{ torrent_pass }}&amp;usetoken=1" class="brackets tooltip" title="Use a FL Token" onclick="return confirm('{{ row.fl_message }}');">FL</a>
  9. {% endif %}
  10. </span>
  11. {{ row.name | raw }}
  12. {% if perms.admin_reports %}
  13. <a href="better.php?method=missing&amp;type={{ type }}&amp;remove={{ id }}&amp;filter={{ filter }}&amp;search={{ search }}" class="brackets">X</a>
  14. {% endif %}
  15. <div class="tags">{{ row.tags | raw }}</div>
  16. </td>
  17. </tr>
  18. {% endfor %}
  19. </table>