summaryrefslogtreecommitdiffstats
path: root/templates/user
diff options
context:
space:
mode:
authorAndrey Nering <andrey.nering@gmail.com>2017-01-05 11:53:01 -0200
committerGitHub <noreply@github.com>2017-01-05 11:53:01 -0200
commit79d527195d98d74867a067ce93a4dace2b86d2bb (patch)
tree0dd577f8b0f28c95a7d66def7d321e3b4e65f2c3 /templates/user
parent9d1bc9aac88bda13e4b9319ab915bca1b65521f6 (diff)
parentb354cf362ec432533da4384d4ee0c32283b7089f (diff)
downloadgitea-79d527195d98d74867a067ce93a4dace2b86d2bb.tar.gz
gitea-79d527195d98d74867a067ce93a4dace2b86d2bb.zip
Merge pull request #539 from andreynering/notifications-step-2
Notifications - Step 2
Diffstat (limited to 'templates/user')
-rw-r--r--templates/user/notification/notification.tmpl70
1 files changed, 70 insertions, 0 deletions
diff --git a/templates/user/notification/notification.tmpl b/templates/user/notification/notification.tmpl
new file mode 100644
index 0000000000..ddfcd4f717
--- /dev/null
+++ b/templates/user/notification/notification.tmpl
@@ -0,0 +1,70 @@
+{{template "base/head" .}}
+
+<div class="user notification">
+ <div class="ui container">
+ <h1 class="ui header">{{.i18n.Tr "notification.notifications"}}</h1>
+
+ <div class="ui top attached tabular menu">
+ <a href="/notifications?q=unread">
+ <div class="{{if eq .Status 1}}active{{end}} item">
+ {{.i18n.Tr "notification.unread"}}
+ {{if eq .Status 1}}
+ <div class="ui label">{{len .Notifications}}</div>
+ {{end}}
+ </div>
+ </a>
+ <a href="/notifications?q=read">
+ <div class="{{if eq .Status 2}}active{{end}} item">
+ {{.i18n.Tr "notification.read"}}
+ {{if eq .Status 2}}
+ <div class="ui label">{{len .Notifications}}</div>
+ {{end}}
+ </div>
+ </a>
+ </div>
+ <div class="ui bottom attached active tab segment">
+ {{if eq (len .Notifications) 0}}
+ {{if eq .Status 1}}
+ {{.i18n.Tr "notification.no_unread"}}
+ {{else}}
+ {{.i18n.Tr "notification.no_read"}}
+ {{end}}
+ {{else}}
+ <div class="ui relaxed divided list">
+ {{range $notification := .Notifications}}
+ {{$issue := $notification.GetIssue}}
+ {{$repo := $notification.GetRepo}}
+ {{$repoOwner := $repo.MustOwner}}
+
+ <div class="item">
+ <a href="{{$.AppSubUrl}}/{{$repoOwner.Name}}/{{$repo.Name}}/issues/{{$issue.Index}}">
+ {{if and $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}}
+
+ <div class="content">
+ <div class="header">{{$repoOwner.Name}}/{{$repo.Name}}</div>
+ <div class="description">#{{$issue.Index}} - {{$issue.Title}}</div>
+ </div>
+ </a>
+ </div>
+ {{end}}
+ </div>
+ {{end}}
+ </div>
+
+ {{template "base/paginate" .}}
+ </div>
+</div>
+
+{{template "base/footer" .}}