2023-07-09 20:42:31 +02:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user notification" id="notification_div" data-sequence-number="{{.SequenceNumber}}">
|
2020-04-24 05:57:38 +02:00
|
|
|
<div class="ui container">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{$notificationUnreadCount := call .NotificationUnreadCount}}
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="tw-flex tw-content-center tw-justify-between gt-mb-4">
|
2023-05-25 04:31:26 +02:00
|
|
|
<div class="small-menu-items ui compact tiny menu">
|
|
|
|
<a class="{{if eq .Status 1}}active {{end}}item" href="{{AppSubUrl}}/notifications?q=unread">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "notification.unread"}}
|
2023-05-25 04:31:26 +02:00
|
|
|
<div class="notifications-unread-count ui label {{if not $notificationUnreadCount}}gt-hidden{{end}}">{{$notificationUnreadCount}}</div>
|
|
|
|
</a>
|
|
|
|
<a class="{{if eq .Status 2}}active {{end}}item" href="{{AppSubUrl}}/notifications?q=read">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "notification.read"}}
|
2023-05-25 04:31:26 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-04-11 05:46:37 +02:00
|
|
|
{{if and (eq .Status 1)}}
|
2023-06-14 20:17:58 +02:00
|
|
|
<form action="{{AppSubUrl}}/notifications/purge" method="post">
|
2021-04-11 05:46:37 +02:00
|
|
|
{{$.CsrfTokenHtml}}
|
2023-02-19 05:06:14 +01:00
|
|
|
<div class="{{if not $notificationUnreadCount}}gt-hidden{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui mini button primary gt-mr-0" title="{{ctx.Locale.Tr "notification.mark_all_as_read"}}">
|
2021-04-11 05:46:37 +02:00
|
|
|
{{svg "octicon-checklist"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-05-25 04:31:26 +02:00
|
|
|
<div class="gt-p-0">
|
|
|
|
<div id="notification_table">
|
2023-12-04 22:48:42 +01:00
|
|
|
{{if not .Notifications}}
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="tw-flex tw-content-center tw-flex-col gt-p-4">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{svg "octicon-inbox" 56 "gt-mb-4"}}
|
|
|
|
{{if eq .Status 1}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "notification.no_unread"}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "notification.no_read"}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{range $notification := .Notifications}}
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="notifications-item tw-flex tw-content-center tw-flex-wrap gt-gap-3 gt-p-3" id="notification_{{.ID}}" data-status="{{.Status}}">
|
2024-03-04 04:33:20 +01:00
|
|
|
<div class="notifications-icon gt-ml-3 gt-mr-2 tw-self-start gt-mt-2">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{if .Issue}}
|
|
|
|
{{template "shared/issueicon" .Issue}}
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-repo" 16 "text grey"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2024-03-22 14:45:10 +01:00
|
|
|
<a class="notifications-link tw-flex tw-flex-1 tw-flex-col silenced" href="{{.Link ctx}}">
|
2023-05-25 04:31:26 +02:00
|
|
|
<div class="notifications-top-row gt-font-13">
|
2023-06-06 17:17:56 +02:00
|
|
|
{{.Repository.FullName}} {{if .Issue}}<span class="text light-3">#{{.Issue.Index}}</span>{{end}}
|
2021-04-11 05:46:37 +02:00
|
|
|
{{if eq .Status 3}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{svg "octicon-pin" 13 "text blue gt-mt-1 gt-ml-2"}}
|
2021-04-11 05:46:37 +02:00
|
|
|
{{end}}
|
2023-05-25 04:31:26 +02:00
|
|
|
</div>
|
|
|
|
<div class="notifications-bottom-row gt-font-16 gt-py-1">
|
|
|
|
<span class="issue-title">
|
|
|
|
{{if .Issue}}
|
|
|
|
{{.Issue.Title | RenderEmoji $.Context | RenderCodeBlock}}
|
2021-04-11 05:46:37 +02:00
|
|
|
{{else}}
|
2023-05-25 04:31:26 +02:00
|
|
|
{{.Repository.FullName}}
|
2021-04-11 05:46:37 +02:00
|
|
|
{{end}}
|
2023-05-25 04:31:26 +02:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</a>
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="notifications-updated tw-content-center gt-mr-3">
|
2023-06-06 17:17:56 +02:00
|
|
|
{{if .Issue}}
|
2023-09-25 14:42:40 +02:00
|
|
|
{{TimeSinceUnix .Issue.UpdatedUnix ctx.Locale}}
|
2023-06-06 17:17:56 +02:00
|
|
|
{{else}}
|
2023-09-25 14:42:40 +02:00
|
|
|
{{TimeSinceUnix .UpdatedUnix ctx.Locale}}
|
2023-06-06 17:17:56 +02:00
|
|
|
{{end}}
|
2023-05-25 04:31:26 +02:00
|
|
|
</div>
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="notifications-buttons tw-content-center tw-justify-end gt-gap-2 gt-px-2">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{if ne .Status 3}}
|
2023-06-14 20:17:58 +02:00
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="post">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="notification_id" value="{{.ID}}">
|
|
|
|
<input type="hidden" name="status" value="pinned">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="btn interact-bg gt-p-3" title="{{ctx.Locale.Tr "notification.pin"}}"
|
2023-05-25 04:31:26 +02:00
|
|
|
data-url="{{AppSubUrl}}/notifications/status"
|
|
|
|
data-status="pinned"
|
|
|
|
data-page="{{$.Page.Paginater.Current}}"
|
|
|
|
data-notification-id="{{.ID}}"
|
|
|
|
data-q="{{$.Keyword}}">
|
|
|
|
{{svg "octicon-pin"}}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
{{if or (eq .Status 1) (eq .Status 3)}}
|
2023-06-14 20:17:58 +02:00
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="post">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="notification_id" value="{{.ID}}">
|
|
|
|
<input type="hidden" name="status" value="read">
|
|
|
|
<input type="hidden" name="page" value="{{$.Page.Paginater.Current}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="btn interact-bg gt-p-3" title="{{ctx.Locale.Tr "notification.mark_as_read"}}"
|
2023-05-25 04:31:26 +02:00
|
|
|
data-url="{{AppSubUrl}}/notifications/status"
|
|
|
|
data-status="read"
|
|
|
|
data-page="{{$.Page.Paginater.Current}}"
|
|
|
|
data-notification-id="{{.ID}}"
|
|
|
|
data-q="{{$.Keyword}}">
|
|
|
|
{{svg "octicon-check"}}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{{else if eq .Status 2}}
|
2023-06-14 20:17:58 +02:00
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="post">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="notification_id" value="{{.ID}}">
|
|
|
|
<input type="hidden" name="status" value="unread">
|
|
|
|
<input type="hidden" name="page" value="{{$.Page.Paginater.Current}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="btn interact-bg gt-p-3" title="{{ctx.Locale.Tr "notification.mark_as_unread"}}"
|
2023-05-25 04:31:26 +02:00
|
|
|
data-url="{{AppSubUrl}}/notifications/status"
|
|
|
|
data-status="unread"
|
|
|
|
data-page="{{$.Page.Paginater.Current}}"
|
|
|
|
data-notification-id="{{.ID}}"
|
|
|
|
data-q="{{$.Keyword}}">
|
|
|
|
{{svg "octicon-bell"}}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2021-04-11 05:46:37 +02:00
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|
2020-04-24 05:57:38 +02:00
|
|
|
</div>
|