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.

body.twig 757B

12345678910111213
  1. {% for b in list %}
  2. <tr class="drag row{{ cycle(['a', 'b'], loop.index0) }}" id="li_{{ b.group_id }}">
  3. <td>
  4. <input class="sort_numbers" type="text" name="sort[{{ b.group_id }}]" value="{{ b.sequence }}" id="sort_{{ b.group_id }}" size="4" />
  5. </td>
  6. <td>{{ loop.index }}</td>
  7. <td>{{ b.year }}</td>
  8. <td>{{ b.artist|raw }}{% if showcase %} [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]{% endif %}</td>
  9. <td><a href="torrents.php?id={{ b.group_id }}" class="tooltip" title="View torrent">{{ b.name }}</a></td>
  10. <td class="nobr tooltip" title="{{ b.added }}">{{ b.added|time_diff }}</td>
  11. <td class="center"><input type="checkbox" name="remove[{{ b.group_id }}]" value="" /></td>
  12. </tr>
  13. {% endfor %}