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/_user_notifications.html
2017-05-21 00:02:57 +02:00

18 lignes
575 o
HTML

{{define "profile_notifications_content"}}
{{with .User}}
<div style="padding: 0.5rem; background: grey;">
<a href="" class="btn btn-danger pull-right"><i class="glyphicon glyphicon-trash"></i> Clear Notifications</a>
<div style="clear: both;"></div>
</div>
<table class="table table-hover table-striped">
{{ range .Notifications }}
<tr><td>
<div style="margin: 1rem;">
<i class="glyphicon glyphicon-bell pull-left" style="margin: -0.5rem;"></i>
<a href="{{ .Url }}"><h3>{{ .Content }}</h3></a>
</div>
</td></tr>
{{end}}
</table>
{{end}}
{{end}}