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.
12345678910111213141516 |
- {% if recent %}
- <table class="layout recent" id="recent_uploads" cellpadding="0" cellspacing="0" border="0">
- <tr class="colhead">
- <td colspan="5"><a href="torrents.php?type={{ type }}&userid={{ id }}">Recent {{ title }}</a></td>
- </tr>
- <tr>
- {% for r in recent %}
- <td>
- <a href="torrents.php?id={{ r.ID }}">
- <img class="tooltip" title="{{ r.Name|raw }}" alt="{{ r.Name|raw }}" src="{{ r.WikiImage|image }}" width="107" />
- </a>
- </td>
- {% endfor %}
- </tr>
- </table>
- {% endif %}
|