|
|
@ -2,23 +2,20 @@ |
|
|
|
|
|
|
|
|
|
|
|
<div class="user notification"> |
|
|
|
<div class="user notification"> |
|
|
|
<div class="ui container"> |
|
|
|
<div class="ui container"> |
|
|
|
<h1 class="ui header">{{.i18n.Tr "notification.notifications"}}</h1> |
|
|
|
<h1 class="ui dividing header">{{.i18n.Tr "notification.notifications"}}</h1> |
|
|
|
|
|
|
|
|
|
|
|
<div class="ui top attached tabular menu"> |
|
|
|
<div class="ui top attached tabular menu"> |
|
|
|
<a href="{{$.AppSubUrl}}/notifications?q=unread"> |
|
|
|
<a href="{{AppSubUrl}}/notifications?q=unread"> |
|
|
|
<div class="{{if eq .Status 1}}active{{end}} item"> |
|
|
|
<div class="{{if eq .Status 1}}active{{end}} item"> |
|
|
|
{{.i18n.Tr "notification.unread"}} |
|
|
|
{{.i18n.Tr "notification.unread"}} |
|
|
|
{{if eq .Status 1}} |
|
|
|
{{if .NotificationUnreadCount}} |
|
|
|
<div class="ui label">{{len .Notifications}}</div> |
|
|
|
<div class="ui label">{{.NotificationUnreadCount}}</div> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
<a href="{{$.AppSubUrl}}/notifications?q=read"> |
|
|
|
<a href="{{AppSubUrl}}/notifications?q=read"> |
|
|
|
<div class="{{if eq .Status 2}}active{{end}} item"> |
|
|
|
<div class="{{if eq .Status 2}}active{{end}} item"> |
|
|
|
{{.i18n.Tr "notification.read"}} |
|
|
|
{{.i18n.Tr "notification.read"}} |
|
|
|
{{if eq .Status 2}} |
|
|
|
|
|
|
|
<div class="ui label">{{len .Notifications}}</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -30,68 +27,76 @@ |
|
|
|
{{.i18n.Tr "notification.no_read"}} |
|
|
|
{{.i18n.Tr "notification.no_read"}} |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{else}} |
|
|
|
{{else}} |
|
|
|
<div class="ui relaxed divided selection list"> |
|
|
|
<table class="ui unstackable striped very compact small selectable table"> |
|
|
|
|
|
|
|
<tbody> |
|
|
|
{{range $notification := .Notifications}} |
|
|
|
{{range $notification := .Notifications}} |
|
|
|
{{$issue := $notification.GetIssue}} |
|
|
|
{{$issue := $notification.GetIssue}} |
|
|
|
{{$repo := $notification.GetRepo}} |
|
|
|
{{$repo := $notification.GetRepo}} |
|
|
|
{{$repoOwner := $repo.MustOwner}} |
|
|
|
{{$repoOwner := $repo.MustOwner}} |
|
|
|
|
|
|
|
|
|
|
|
<a class="item" href="{{$.AppSubUrl}}/{{$repoOwner.Name}}/{{$repo.Name}}/issues/{{$issue.Index}}"> |
|
|
|
<tr data-href="{{AppSubUrl}}/{{$repoOwner.Name}}/{{$repo.Name}}/issues/{{$issue.Index}}"> |
|
|
|
<div class="buttons-panel right floated content"> |
|
|
|
<td class="collapsing"> |
|
|
|
|
|
|
|
{{if eq $notification.Status 3}} |
|
|
|
|
|
|
|
<i class="blue octicon octicon-pin"></i> |
|
|
|
|
|
|
|
{{else if $issue.IsPull}} |
|
|
|
|
|
|
|
{{if $issue.IsClosed}} |
|
|
|
|
|
|
|
<i class="octicon octicon-git-merge"></i> |
|
|
|
|
|
|
|
{{else}} |
|
|
|
|
|
|
|
<i class="octicon octicon-git-pull-request"></i> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{else}} |
|
|
|
|
|
|
|
{{if $issue.IsClosed}} |
|
|
|
|
|
|
|
<i class="octicon octicon-issue-closed"></i> |
|
|
|
|
|
|
|
{{else}} |
|
|
|
|
|
|
|
<i class="octicon octicon-issue-opened"></i> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="twelve wide"> |
|
|
|
|
|
|
|
<a class="item" href="{{AppSubUrl}}/{{$repoOwner.Name}}/{{$repo.Name}}/issues/{{$issue.Index}}"> |
|
|
|
|
|
|
|
#{{$issue.Index}} - {{$issue.Title}} |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td> |
|
|
|
|
|
|
|
{{$repoOwner.Name}}/{{$repo.Name}} |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="collapsing"> |
|
|
|
{{if ne $notification.Status 3}} |
|
|
|
{{if ne $notification.Status 3}} |
|
|
|
<form action="{{$.AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="status" value="pinned" /> |
|
|
|
<input type="hidden" name="status" value="pinned" /> |
|
|
|
<button class="ui button" title="Pin notification"> |
|
|
|
<button class="ui mini button" title='{{$.i18n.Tr "notification.pin"}}'> |
|
|
|
<i class="octicon octicon-pin"></i> |
|
|
|
<i class="octicon octicon-pin"></i> |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</form> |
|
|
|
</form> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="collapsing"> |
|
|
|
{{if or (eq $notification.Status 1) (eq $notification.Status 3)}} |
|
|
|
{{if or (eq $notification.Status 1) (eq $notification.Status 3)}} |
|
|
|
<form action="{{$.AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="status" value="read" /> |
|
|
|
<input type="hidden" name="status" value="read" /> |
|
|
|
<button class="ui button" title="Mark as read"> |
|
|
|
<button class="ui mini button" title='{{$.i18n.Tr "notification.mark_as_read"}}'> |
|
|
|
<i class="octicon octicon-check"></i> |
|
|
|
<i class="octicon octicon-check"></i> |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</form> |
|
|
|
</form> |
|
|
|
{{else if eq $notification.Status 2}} |
|
|
|
{{else if eq $notification.Status 2}} |
|
|
|
<form action="{{$.AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
<form action="{{AppSubUrl}}/notifications/status" method="POST"> |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
{{$.CsrfTokenHtml}} |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="notification_id" value="{{$notification.ID}}" /> |
|
|
|
<input type="hidden" name="status" value="unread" /> |
|
|
|
<input type="hidden" name="status" value="unread" /> |
|
|
|
<button class="ui button" title="Mark as unread"> |
|
|
|
<button class="ui mini button" title='{{$.i18n.Tr "notification.mark_as_unread"}}'> |
|
|
|
<i class="octicon octicon-bell"></i> |
|
|
|
<i class="octicon octicon-bell"></i> |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</form> |
|
|
|
</form> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
|
|
|
|
</tr> |
|
|
|
{{if eq $notification.Status 3}} |
|
|
|
|
|
|
|
<i class="blue octicon octicon-pin"></i> |
|
|
|
|
|
|
|
{{else if $issue.IsPull}} |
|
|
|
|
|
|
|
{{if $issue.IsClosed}} |
|
|
|
|
|
|
|
<i class="octicon octicon-git-merge"></i> |
|
|
|
|
|
|
|
{{else}} |
|
|
|
|
|
|
|
<i class="octicon octicon-git-pull-request"></i> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{else}} |
|
|
|
</tbody> |
|
|
|
{{if $issue.IsClosed}} |
|
|
|
</table> |
|
|
|
<i class="octicon octicon-issue-closed"></i> |
|
|
|
|
|
|
|
{{else}} |
|
|
|
|
|
|
|
<i class="octicon octicon-issue-opened"></i> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="content"> |
|
|
|
|
|
|
|
<div class="header">{{$repoOwner.Name}}/{{$repo.Name}}</div> |
|
|
|
|
|
|
|
<div class="description">#{{$issue.Index}} - {{$issue.Title}}</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|