18 lignes
575 o
HTML
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}}
|