summaryrefslogtreecommitdiffstats
path: root/templates/user/notification/notification.tmpl
blob: 154f8b179052d07ddc00adcec1dd32feb1d09256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{{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?status=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?status=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>
	</div>
</div>

{{template "base/footer" .}}