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.

announce_source.html 485B

12345678910111213141516171819202122232425
  1. <aside class="announce_source">
  2. {% for announce in announces %}
  3. <p>
  4. <strong>Announce</strong>
  5. <input
  6. type="text"
  7. value="{{ announce }}/{{ torrent_pass }}/announce"
  8. size="60"
  9. readonly="readonly"
  10. onclick="this.select();"
  11. />
  12. </p>
  13. {% endfor %}
  14. <p>
  15. <strong>Source</strong>
  16. <input
  17. type="text"
  18. value="{{ torrent_source }}"
  19. size="30"
  20. readonly="readonly"
  21. onclick="this.select();"
  22. />
  23. </p>
  24. </aside>