1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-09 12:48:27 +00:00
Files
go-inbucket/themes/bootstrap/templates/mailbox/_list.html
2015-08-16 23:05:13 -07:00

13 lines
419 B
HTML

{{$name := .name}}
{{range .messages}}
<button id="{{.Id}}" type="button" class="listEntry list-group-item">
<div class="row">
<div class="col-sm-4 col-md-12 text-primary">{{.Subject}}</div>
<div class="col-sm-4 col-md-12 small">{{.From}}</div>
<div class="col-sm-4 col-md-12 small">{{friendlyTime .Date}}</div>
</div>
</button>
{{else}}
<div class="list-group-item disabled">No messages!</div>
{{end}}