bloat/templates/notification.tmpl

69 lines
2.3 KiB
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
2019-12-15 17:37:58 +00:00
<div class="page-title"> Notifications </div>
{{range .Notifications}}
<div class="notification-container {{if .Pleroma}}{{if not .Pleroma.IsSeen}}unread{{end}}{{end}}">
{{if eq .Type "follow"}}
<div class="notification-follow-container">
2019-12-22 03:43:25 +00:00
<div class="status-profile-img-container">
<a class="img-link" href="/user/{{.Account.ID}}" >
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
</a>
</div>
2019-12-15 17:37:58 +00:00
<div>
2020-01-01 09:40:47 +00:00
<div class="notification-info-text">
2019-12-21 05:48:06 +00:00
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
2020-01-01 09:40:47 +00:00
<span> followed you </span>
2020-01-29 18:14:27 +00:00
<span>
- <time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{FormatTimeRFC822 .CreatedAt}}">{{TimeSince .CreatedAt}}</time>
</span>
2019-12-15 17:37:58 +00:00
</div>
<div class="notification-follow-uname">
@{{.Account.Acct}}
</div>
</div>
</div>
{{else if eq .Type "mention"}}
2020-01-14 16:57:16 +00:00
{{template "status" (WithContext .Status $.Ctx)}}
2019-12-15 17:37:58 +00:00
{{else if eq .Type "reblog"}}
2020-01-29 18:14:27 +00:00
<div class="retweet-info">
<a class="img-link" href="/user/{{.Account.ID}}">
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
</a>
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
<span> retweeted your post </span>
<span>
- <time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{FormatTimeRFC822 .CreatedAt}}">{{TimeSince .CreatedAt}}</time>
</span>
2019-12-15 17:37:58 +00:00
</div>
2020-01-29 18:14:27 +00:00
{{template "status" (WithContext .Status $.Ctx)}}
2019-12-15 17:37:58 +00:00
{{else if eq .Type "favourite"}}
2020-01-29 18:14:27 +00:00
<div class="retweet-info">
<a class="img-link" href="/user/{{.Account.ID}}">
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
</a>
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
<span> liked your post </span>
<span>
- <time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{FormatTimeRFC822 .CreatedAt}}">{{TimeSince .CreatedAt}}</time>
</span>
2019-12-15 17:37:58 +00:00
</div>
2020-01-29 18:14:27 +00:00
{{template "status" (WithContext .Status $.Ctx)}}
2019-12-15 17:37:58 +00:00
{{end}}
</div>
{{end}}
<div class="pagination">
2020-01-28 17:51:00 +00:00
{{if .NextLink}}
2019-12-15 17:37:58 +00:00
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
2020-01-14 16:57:16 +00:00
2019-12-15 17:37:58 +00:00
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}