|
- <div class="header-wrapper">
- {{with .Repository}}
- <div class="ui container">
- <div class="repo-header">
- <div class="ui huge breadcrumb repo-title">
-
- <!-- customised: first mirror/fork info, then the repo name -->
- {{if .IsMirror}}<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" rel="noopener noreferrer" href="{{if .SanitizedOriginalURL}}{{.SanitizedOriginalURL}}{{else}}{{MirrorAddress $.Mirror}}{{end}}">{{if .SanitizedOriginalURL}}{{.SanitizedOriginalURL}}{{else}}{{MirrorAddress $.Mirror}}{{end}}</a></div>{{end}}
- {{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{SubStr .BaseRepo.RelLink 1 -1}}</a></div>{{end}}
- {{if .IsGenerated}}<div class="fork-flag">{{$.i18n.Tr "repo.generated_from"}} <a href="{{.TemplateRepo.Link}}">{{SubStr .TemplateRepo.RelLink 1 -1}}</a></div>{{end}}
-
- {{if .RelAvatarLink}}
- <img class="ui avatar image" src="{{.RelAvatarLink}}"/>
- {{else if .IsTemplate}}
- {{if .IsPrivate}}
- {{svg "octicon-repo-template-private" 32}}
- {{else}}
- {{svg "octicon-repo-template" 32}}
- {{end}}
- {{else}}
- {{if .IsPrivate}}
- {{svg "octicon-lock" 32}}
- {{else if .IsMirror}}
- {{svg "octicon-repo-clone" 32}}
- {{else if .IsFork}}
- {{svg "octicon-repo-forked" 32}}
- {{else}}
- {{svg "octicon-repo" 32}}
- {{end}}
- {{end}}
- <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
- <div class="divider"> / </div>
- <a href="{{$.RepoLink}}">{{.Name}}</a>
- {{if .RelAvatarLink}}
- {{if .IsTemplate}}
- {{if .IsPrivate}}
- {{svg "octicon-repo-template-private" 32}}
- {{else}}
- {{svg "octicon-repo-template" 32}}
- {{end}}
- {{else}}
- {{if .IsPrivate}}
- {{svg "octicon-lock" 32}}
- {{else if .IsMirror}}
- {{svg "octicon-repo-clone" 32}}
- {{else if .IsFork}}
- {{svg "octicon-repo-forked" 32}}
- {{else}}
- {{svg "octicon-repo" 32}}
- {{end}}
- {{end}}
- {{end}}
- {{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}}
- </div>
- <div class="ui repo-description">
- <div id="repo-desc">
- {{if .DescriptionHTML}}<span class="description has-emoji">{{.DescriptionHTML}}</span>{{end}}
- <a class="link" href="{{.Website}}">{{.Website}}</a>
- </div>
- </div>
- </div><!-- end grid -->
- </div><!-- end container -->
- {{end}}
- <div class="ui tabs container">
- {{if not .Repository.IsBeingCreated}}
- <div class="ui tabular stackable menu navbar">
- {{if .Permission.CanRead $.UnitTypeCode}}
- <a class="{{if .PageIsViewCode}}active{{end}} item" href="{{.RepoLink}}{{if (ne .BranchName .Repository.DefaultBranch)}}/src/{{.BranchNameSubURL | EscapePound}}{{end}}">
- {{svg "octicon-code" 16}} {{.i18n.Tr "repo.code"}}
- </a>
- {{end}}
-
- {{if .Permission.CanRead $.UnitTypeIssues}}
- <a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoLink}}/issues" rel="noopener noreferrer">
- {{svg "octicon-issue-opened" 16}} {{.i18n.Tr "repo.issues"}} <span class="ui small label">{{.Repository.NumOpenIssues}}</span>
- </a>
- {{end}}
-
- {{if .Permission.CanRead $.UnitTypeExternalTracker}}
- <a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoExternalIssuesLink}}" target="_blank">
- {{svg "octicon-issue-opened" 16}} {{.i18n.Tr "repo.issues"}} </span>
- </a>
- {{end}}
-
- {{if and .Repository.CanEnablePulls (.Permission.CanRead $.UnitTypePullRequests)}}
- <a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls">
- {{svg "octicon-git-pull-request" 16}} {{.i18n.Tr "repo.pulls"}} <span class="ui small label">{{.Repository.NumOpenPulls}}</span>
- </a>
- {{end}}
-
- {{if and (.Permission.CanRead $.UnitTypeReleases) (not .IsEmptyRepo) }}
- <a class="{{if .PageIsReleaseList}}active{{end}} item" href="{{.RepoLink}}/releases">
- {{svg "octicon-tag" 16}} {{.i18n.Tr "repo.releases"}} <span class="ui small label">{{.NumReleases}}</span>
- </a>
- {{end}}
-
- {{if and (.Permission.CanReadAny $.UnitTypePullRequests $.UnitTypeIssues $.UnitTypeReleases) (not .IsEmptyRepo)}}
- <a class="{{if .PageIsActivity}}active{{end}} item" href="{{.RepoLink}}/activity">
- {{svg "octicon-pulse" 16}} {{.i18n.Tr "repo.activity"}}
- </a>
- {{end}}
-
- {{template "custom/extra_tabs" .}}
-
- {{if .Permission.IsAdmin}}
- <div class="right menu">
- <a class="{{if .PageIsSettings}}active{{end}} item" href="{{.RepoLink}}/settings">
- {{svg "octicon-tools" 16}} {{.i18n.Tr "repo.settings"}}
- </a>
- </div>
- {{end}}
- </div>
- {{end}}
- </div>
- <div class="ui tabs divider"></div>
- </div>
|