$def with (torrent_list) $:render.header(_('Torrent list'))
$:(sort_head('calc_state_str', 'S')) $:(sort_head('queue_pos', '#')) $:(sort_head('name', _('Name'))) $:(sort_head('progress', _('Progress'))) $#4-space indentation is mandatory for for-loops in templetor! $for torrent in torrent_list:
$torrent.queue_pos $(crop(torrent.name, 40))
$torrent.message
$:render.part_button('GET', '/torrent/add', _('Add torrent'), 'tango/list-add.png') $:render.part_button('POST', '/pause_all', _('Pause all'), 'tango/media-playback-pause.png') $:render.part_button('POST', '/resume_all', _('Resume all'), 'tango/media-playback-start.png') $:render.part_button('POST', '/logout', _('Logout'), 'tango/system-log-out.png')
$:render.footer()