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.

client-whitelist.twig 1.1KB

12345678910111213141516171819202122232425
  1. <div class="header">
  2. <h2 class="general">Client Whitelist</h2>
  3. </div>
  4. <div class="box pad">
  5. <p>Client rules are how we maintain the integrity of our swarms. This allows us to filter out
  6. disruptive and dishonest clients that may hurt the performance of either the tracker or individual peers.</p>
  7. <table cellpadding="5" cellspacing="1" border="0" class="border" width="100%">
  8. <tr class="colhead">
  9. <td><strong>Allowed Client</strong></td>
  10. <td style="width: 75px"><strong>Peer ID</strong></td>
  11. </tr>
  12. {% for c in list %}
  13. {% if 'HIDDEN' not in c.vstring %}
  14. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  15. <td>{{ c.vstring }}</td>
  16. <td>{{ c.peer_id }}</td>
  17. </tr>
  18. {% endif %}
  19. {% endfor %}
  20. </table>
  21. <p>If you think an important client (or major version) should be listed, you can
  22. <a href="{{ site_url }}/forums.php?action=viewthread&amp;threadid={{ forum_thread }}">make a
  23. suggestion</a> for Staff to take it into consideration. This does not guarantee that it
  24. will be whitelisted, nor should you begin to use it until it has been approved.
  25. </div>