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.

recent.twig 514B

12345678910111213141516
  1. {% if recent %}
  2. <table class="layout recent" id="recent_uploads" cellpadding="0" cellspacing="0" border="0">
  3. <tr class="colhead">
  4. <td colspan="5"><a href="torrents.php?type={{ type }}&amp;userid={{ id }}">Recent {{ title }}</a></td>
  5. </tr>
  6. <tr>
  7. {% for r in recent %}
  8. <td>
  9. <a href="torrents.php?id={{ r.ID }}">
  10. <img class="tooltip" title="{{ r.Name|raw }}" alt="{{ r.Name|raw }}" src="{{ r.WikiImage|image }}" width="107" />
  11. </a>
  12. </td>
  13. {% endfor %}
  14. </tr>
  15. </table>
  16. {% endif %}