2016-02-15 04:56:47 +05:30
|
|
|
<div class="header-wrapper">
|
2014-10-19 11:05:24 +05:30
|
|
|
{{with .Repository}}
|
2017-12-31 06:17:52 +05:30
|
|
|
<div class="ui container">
|
2019-02-06 03:29:26 +05:30
|
|
|
<div class="repo-header">
|
2020-12-08 09:44:28 +05:30
|
|
|
<div class="repo-title-wrap df fc">
|
|
|
|
<div class="repo-title">
|
|
|
|
{{$avatar := (repoAvatar . 32 "mr-3")}}
|
|
|
|
{{if $avatar}}
|
|
|
|
{{$avatar}}
|
2020-06-23 01:50:51 +05:30
|
|
|
{{else}}
|
2020-12-08 09:44:28 +05:30
|
|
|
{{template "repo/icon" .}}
|
2020-06-23 01:50:51 +05:30
|
|
|
{{end}}
|
2020-12-08 09:44:28 +05:30
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
|
|
|
|
<div class="mx-2">/</div>
|
|
|
|
<a href="{{$.RepoLink}}">{{.Name}}</a>
|
|
|
|
<div class="labels df ac fw">
|
|
|
|
{{if .IsTemplate}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.private_template"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.internal_template"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.private"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.internal"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2020-06-23 01:50:51 +05:30
|
|
|
{{end}}
|
2020-12-08 09:44:28 +05:30
|
|
|
{{if .IsArchived}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.archived"}}</span>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-25 16:27:43 +05:30
|
|
|
{{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}}
|
2019-02-06 03:29:26 +05:30
|
|
|
{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{SubStr .BaseRepo.RelLink 1 -1}}</a></div>{{end}}
|
2019-11-11 20:45:29 +05:30
|
|
|
{{if .IsGenerated}}<div class="fork-flag">{{$.i18n.Tr "repo.generated_from"}} <a href="{{.TemplateRepo.Link}}">{{SubStr .TemplateRepo.RelLink 1 -1}}</a></div>{{end}}
|
2017-12-31 06:17:52 +05:30
|
|
|
</div>
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if not .IsBeingCreated}}
|
|
|
|
<div class="repo-buttons">
|
2021-03-01 06:17:30 +05:30
|
|
|
{{if $.RepoTransfer}}
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/accept_transfer?redirect_to={{$.RepoLink}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<div class="ui poping up" data-content="{{if $.CanUserAcceptTransfer}}{{$.i18n.Tr "repo.transfer.accept_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{$.i18n.Tr "repo.transfer.no_permission_to_accept"}}{{end}}" data-position="bottom center" data-variation="tiny">
|
|
|
|
<button type="submit" class="ui button {{if $.CanUserAcceptTransfer}}green {{end}} ok inverted small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
|
|
|
|
{{$.i18n.Tr "repo.transfer.accept"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/reject_transfer?redirect_to={{$.RepoLink}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
<div class="ui poping up" data-content="{{if $.CanUserAcceptTransfer}}{{$.i18n.Tr "repo.transfer.reject_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{$.i18n.Tr "repo.transfer.no_permission_to_reject"}}{{end}}" data-position="bottom center" data-variation="tiny">
|
|
|
|
<button type="submit" class="ui button {{if $.CanUserAcceptTransfer}}red {{end}}ok inverted small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
|
|
|
|
{{$.i18n.Tr "repo.transfer.reject"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
2020-02-26 01:58:47 +05:30
|
|
|
<form method="post" action="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2020-09-11 16:31:51 +05:30
|
|
|
<div class="ui labeled button{{if not $.IsSigned}} poping up{{end}}" tabindex="0"{{if not $.IsSigned}} data-content="{{$.i18n.Tr "repo.watch_guest_user" }}" data-position="top center" data-variation="tiny"{{end}}>
|
2020-12-27 16:23:53 +05:30
|
|
|
<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
|
2020-09-12 01:49:00 +05:30
|
|
|
{{if $.IsWatchingRepo}}{{svg "octicon-eye-closed" 16}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{svg "octicon-eye"}}{{$.i18n.Tr "repo.watch"}}{{end}}
|
2020-02-26 01:58:47 +05:30
|
|
|
</button>
|
|
|
|
<a class="ui basic label" href="{{.Link}}/watchers">
|
2020-09-16 09:37:18 +05:30
|
|
|
{{CountFmt .NumWatches}}
|
2020-02-26 01:58:47 +05:30
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2020-09-11 16:31:51 +05:30
|
|
|
<div class="ui labeled button{{if not $.IsSigned}} poping up{{end}}" tabindex="0"{{if not $.IsSigned}} data-content="{{$.i18n.Tr "repo.star_guest_user" }}" data-position="top center" data-variation="tiny"{{end}}>
|
2020-12-27 16:23:53 +05:30
|
|
|
<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
|
2020-09-12 01:49:00 +05:30
|
|
|
{{if $.IsStaringRepo}}{{svg "octicon-star-fill"}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{svg "octicon-star"}}{{$.i18n.Tr "repo.star"}}{{end}}
|
2020-02-26 01:58:47 +05:30
|
|
|
</button>
|
|
|
|
<a class="ui basic label" href="{{.Link}}/stars">
|
2020-09-16 09:37:18 +05:30
|
|
|
{{CountFmt .NumStars}}
|
2020-02-26 01:58:47 +05:30
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if and (not .IsEmpty) ($.Permission.CanRead $.UnitTypeCode)}}
|
2021-03-08 23:25:37 +05:30
|
|
|
<div class="ui labeled button {{if not $.IsSigned}} disabled{{end}}" tabindex="0">
|
2020-12-27 16:23:53 +05:30
|
|
|
<a class="ui compact small basic button {{if or (not $.IsSigned) (not $.CanSignedUserFork)}}poping up{{end}}" {{if $.CanSignedUserFork}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{else if $.IsSigned}} data-content="{{$.i18n.Tr "repo.fork_from_self"}}" {{ else }} data-content="{{$.i18n.Tr "repo.fork_guest_user" }}" rel="nofollow" href="{{AppSubUrl}}/user/login?redirect_to={{AppSubUrl}}/repo/fork/{{.ID}}" {{end}} data-position="top center" data-variation="tiny">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-repo-forked"}}{{$.i18n.Tr "repo.fork"}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
<a class="ui basic label" href="{{.Link}}/forks">
|
2020-09-16 09:37:18 +05:30
|
|
|
{{CountFmt .NumForks}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2016-02-15 04:56:47 +05:30
|
|
|
</div><!-- end grid -->
|
|
|
|
</div><!-- end container -->
|
2015-08-12 15:42:06 +05:30
|
|
|
{{end}}
|
2016-02-15 04:56:47 +05:30
|
|
|
<div class="ui tabs container">
|
2019-10-13 18:53:14 +05:30
|
|
|
{{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}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-code"}} {{.i18n.Tr "repo.code"}}
|
2017-02-04 21:23:46 +05:30
|
|
|
</a>
|
2019-10-13 18:53:14 +05:30
|
|
|
{{end}}
|
2017-03-18 16:29:07 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if .Permission.CanRead $.UnitTypeIssues}}
|
|
|
|
<a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoLink}}/issues">
|
2020-10-24 17:24:33 +05:30
|
|
|
{{svg "octicon-issue-opened"}} {{.i18n.Tr "repo.issues"}}
|
|
|
|
{{if .Repository.NumOpenIssues}}
|
|
|
|
<span class="ui blue small label">{{CountFmt .Repository.NumOpenIssues}}</span>
|
|
|
|
{{end}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 21:23:46 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if .Permission.CanRead $.UnitTypeExternalTracker}}
|
|
|
|
<a class="{{if .PageIsIssueList}}active{{end}} item" href="{{.RepoExternalIssuesLink}}" target="_blank" rel="noopener noreferrer">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-link-external"}} {{.i18n.Tr "repo.issues"}} </span>
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 21:23:46 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if and .Repository.CanEnablePulls (.Permission.CanRead $.UnitTypePullRequests)}}
|
|
|
|
<a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls">
|
2020-10-24 17:24:33 +05:30
|
|
|
{{svg "octicon-git-pull-request"}} {{.i18n.Tr "repo.pulls"}}
|
|
|
|
{{if .Repository.NumOpenPulls}}
|
|
|
|
<span class="ui blue small label">{{CountFmt .Repository.NumOpenPulls}}</span>
|
|
|
|
{{end}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 21:23:46 +05:30
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
{{ if and (not .UnitProjectsGlobalDisabled) (.Permission.CanRead $.UnitTypeProjects)}}
|
|
|
|
<a href="{{.RepoLink}}/projects" class="{{ if .IsProjectsPage }}active{{end}} item">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-project"}} {{.i18n.Tr "repo.project_board"}}
|
2020-10-24 17:24:33 +05:30
|
|
|
{{if .Repository.NumOpenProjects}}
|
|
|
|
<span class="ui blue small label">{{CountFmt .Repository.NumOpenProjects}}</span>
|
|
|
|
{{end}}
|
2020-08-17 08:37:38 +05:30
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if and (.Permission.CanRead $.UnitTypeReleases) (not .IsEmptyRepo) }}
|
|
|
|
<a class="{{if .PageIsReleaseList}}active{{end}} item" href="{{.RepoLink}}/releases">
|
2020-10-24 17:24:33 +05:30
|
|
|
{{svg "octicon-tag"}} {{.i18n.Tr "repo.releases"}}
|
|
|
|
{{if .NumReleases}}
|
|
|
|
<span class="ui blue small label">{{CountFmt .NumReleases}}</span>
|
|
|
|
{{end}}
|
2017-10-15 04:47:39 +05:30
|
|
|
</a>
|
2019-10-13 18:53:14 +05:30
|
|
|
{{end}}
|
2017-10-15 04:47:39 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if or (.Permission.CanRead $.UnitTypeWiki) (.Permission.CanRead $.UnitTypeExternalWiki)}}
|
|
|
|
<a class="{{if .PageIsWiki}}active{{end}} item" href="{{.RepoLink}}/wiki" {{if (.Permission.CanRead $.UnitTypeExternalWiki)}} target="_blank" rel="noopener noreferrer" {{end}}>
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-book"}} {{.i18n.Tr "repo.wiki"}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
{{end}}
|
2018-01-10 11:49:50 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
{{if and (.Permission.CanReadAny $.UnitTypePullRequests $.UnitTypeIssues $.UnitTypeReleases) (not .IsEmptyRepo)}}
|
|
|
|
<a class="{{if .PageIsActivity}}active{{end}} item" href="{{.RepoLink}}/activity">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-pulse"}} {{.i18n.Tr "repo.activity"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</a>
|
2019-10-13 18:53:14 +05:30
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "custom/extra_tabs" .}}
|
|
|
|
|
|
|
|
{{if .Permission.IsAdmin}}
|
|
|
|
<div class="right menu">
|
|
|
|
<a class="{{if .PageIsSettings}}active{{end}} item" href="{{.RepoLink}}/settings">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-tools"}} {{.i18n.Tr "repo.settings"}}
|
2019-10-13 18:53:14 +05:30
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui tabs divider"></div>
|
2016-03-05 01:20:34 +05:30
|
|
|
</div>
|