aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/overview/header.tmpl
blob: 9b6458474e5aa85c0f9be48da11158ad807bee2a (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
69
<div class="ui secondary stackable pointing menu">
	{{if .HasProfileReadme}}
	<a class="{{if eq .TabName "overview"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=overview">
		{{svg "octicon-info"}} {{ctx.Locale.Tr "user.overview"}}
	</a>
	{{end}}
	<a class="{{if eq .TabName "repositories"}}active {{end}} item" href="{{.ContextUser.HomeLink}}?tab=repositories">
		{{svg "octicon-repo"}} {{ctx.Locale.Tr "user.repositories"}}
		{{if .RepoCount}}
			<div class="ui small label">{{.RepoCount}}</div>
		{{end}}
	</a>
	{{if or .ContextUser.IsIndividual (and .ContextUser.IsOrganization .CanReadProjects)}}
	<a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if .PageIsViewProjects}}active {{end}}item">
		{{svg "octicon-project-symlink"}} {{ctx.Locale.Tr "user.projects"}}
	</a>
	{{end}}
	{{if and .IsPackageEnabled (or .ContextUser.IsIndividual (and .ContextUser.IsOrganization .CanReadPackages))}}
		<a href="{{.ContextUser.HomeLink}}/-/packages" class="{{if .IsPackagesPage}}active {{end}}item">
			{{svg "octicon-package"}} {{ctx.Locale.Tr "packages.title"}}
		</a>
	{{end}}
	{{if and .IsRepoIndexerEnabled (or .ContextUser.IsIndividual (and .ContextUser.IsOrganization .CanReadCode))}}
		<a href="{{.ContextUser.HomeLink}}/-/code" class="{{if .IsCodePage}}active {{end}}item">
			{{svg "octicon-code"}} {{ctx.Locale.Tr "user.code"}}
		</a>
	{{end}}

	{{if .ContextUser.IsOrganization}}
		{{if .NumMembers}}
			<a class="{{if $.PageIsOrgMembers}}active {{end}}item" href="{{$.OrgLink}}/members">
				{{svg "octicon-person"}}&nbsp;{{ctx.Locale.Tr "org.members"}}
				<div class="ui small label">{{.NumMembers}}</div>
			</a>
		{{end}}
		{{if .IsOrganizationMember}}
			<a class="{{if $.PageIsOrgTeams}}active {{end}}item" href="{{$.OrgLink}}/teams">
				{{svg "octicon-people"}}&nbsp;{{ctx.Locale.Tr "org.teams"}}
				{{if .NumTeams}}
					<div class="ui small label">{{.NumTeams}}</div>
				{{end}}
			</a>
		{{end}}

		{{if .IsOrganizationOwner}}
			<div class="right menu">
				<a class="item" href="{{.OrgLink}}/settings">
				{{svg "octicon-tools"}} {{ctx.Locale.Tr "repo.settings"}}
				</a>
			</div>
		{{end}}
	{{else}}
		<a class="{{if eq .TabName "activity"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=activity">
			{{svg "octicon-rss"}} {{ctx.Locale.Tr "user.activity"}}
		</a>
		{{if not .DisableStars}}
			<a class="{{if eq .TabName "stars"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=stars">
				{{svg "octicon-star"}} {{ctx.Locale.Tr "user.starred"}}
				{{if .ContextUser.NumStars}}
					<div class="ui small label">{{.ContextUser.NumStars}}</div>
				{{end}}
			</a>
		{{else}}
			<a class="{{if eq .TabName "watching"}}active {{end}}item" href="{{.ContextUser.HomeLink}}?tab=watching">
				{{svg "octicon-eye"}} {{ctx.Locale.Tr "user.watched"}}
			</a>
		{{end}}
	{{end}}
</div>