Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/activity_list.html

22 lignes
748 o
HTML
Brut Vue normale Historique

{{define "title"}}{{ call $.T "activity_list" }}{{end}}
{{define "contclass"}}cont-home{{end}}
{{define "content"}}
<div class="results box">
<table>
<thead class="torrent-info">
<tr>
<th class="tr-name">{{ call $.T "activities" }}</th>
<th class="tr-size">{{ call $.T "filter" }}</th>
</tr>
</thead>
<tbody>
{{ range .Models}}
<tr>
<td class="tr-name home-td"><a>{{ genActivityContent . $.T }}</a></td>
<td class="tr-actions home-td"><a href="{{ genRoute "activity_list" }}?filter={{.Filter}}" class="form-input">{{ call $.T .Filter }}</a></td>
</tr>
{{end}}
</tbody>
</table>
</div>
{{end}}