2017-10-25 20:49:16 -04:00
{{template "base/head" .}}
<div class="ui repository branches">
{{template "repo/header" .}}
<div class="ui container">
{{template "base/alert" .}}
{{template "repo/sub_menu" .}}
<h4 class="ui top attached header">
{{.i18n.Tr "repo.default_branch"}}
</h4>
<div class="ui attached table segment">
<table class="ui very basic striped fixed table single line">
<tbody>
<tr>
2019-07-17 16:02:41 -04:00
<td>
2019-07-30 11:02:58 -04:00
{{range .Branches}}
2019-07-17 16:02:41 -04:00
{{if eq .Name $.DefaultBranch}}
{{if .IsProtected}}
2020-02-11 12:02:41 -05:00
{{svg "octicon-shield-lock" 16}}
2019-07-17 16:02:41 -04:00
{{end}}
2019-07-18 12:39:51 -04:00
<a href="{{$.RepoLink}}/src/branch/{{$.DefaultBranch | EscapePound}}">{{$.DefaultBranch}}</a>
2020-02-11 12:02:41 -05:00
<p class="info">{{svg "octicon-git-commit" 16}}<a href="{{$.RepoLink}}/commit/{{.Commit.ID.String}}">{{ShortSha .Commit.ID.String}}</a> · <span class="commit-message">{{RenderCommitMessage .Commit.CommitMessage $.RepoLink $.Repository.ComposeMetas}}</span> · {{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Commit.Committer.When $.i18n.Lang}}</p>
2019-07-17 16:02:41 -04:00
{{end}}
{{end}}
</td>
2019-07-28 22:27:05 -04:00
<td class="right aligned overflow-visible">
2019-11-16 07:03:07 -05:00
<div class="ui basic jump dropdown icon button poping up" data-content="{{$.i18n.Tr "repo.branch.download" ($.DefaultBranch)}}" data-variation="tiny inverted" data-position="top right">
2019-07-28 22:27:05 -04:00
<i class="download icon"></i>
<div class="menu">
2020-02-11 12:02:41 -05:00
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.DefaultBranch}}.zip">{{svg "octicon-file-zip" 16}} ZIP</a>
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.DefaultBranch}}.tar.gz">{{svg "octicon-file-zip" 16}} TAR.GZ</a>
2019-07-28 22:27:05 -04:00
</div>
</div>
</td>
2017-10-25 20:49:16 -04:00
</tr>
</tbody>
</table>
</div>
{{if gt (len .Branches) 1}}
<h4 class="ui top attached header">
{{.i18n.Tr "repo.branches"}}
</h4>
<div class="ui attached table segment">
<table class="ui very basic striped fixed table single line">
<tbody>
2019-07-30 11:02:58 -04:00
{{range .Branches}}
2017-10-25 20:49:16 -04:00
{{if ne .Name $.DefaultBranch}}
<tr>
2019-07-26 07:21:14 -04:00
<td class="six wide">
2017-10-25 20:49:16 -04:00
{{if .IsDeleted}}
2018-09-16 18:28:23 -04:00
<s><a href="{{$.RepoLink}}/src/branch/{{.Name | EscapePound}}">{{.Name}}</a></s>
2019-07-17 16:02:41 -04:00
<p class="info">{{$.i18n.Tr "repo.branch.deleted_by" .DeletedBranch.DeletedBy.Name}} {{TimeSinceUnix .DeletedBranch.DeletedUnix $.i18n.Lang}}</p>
2017-10-25 20:49:16 -04:00
{{else}}
2019-07-17 16:02:41 -04:00
{{if .IsProtected}}
2020-02-11 12:02:41 -05:00
{{svg "octicon-shield-lock" 16}}
2019-07-17 16:02:41 -04:00
{{end}}
2018-09-16 18:28:23 -04:00
<a href="{{$.RepoLink}}/src/branch/{{.Name | EscapePound}}">{{.Name}}</a>
2020-02-11 12:02:41 -05:00
<p class="info">{{svg "octicon-git-commit" 16}}<a href="{{$.RepoLink}}/commit/{{.Commit.ID.String}}">{{ShortSha .Commit.ID.String}}</a> · <span class="commit-message">{{RenderCommitMessage .Commit.CommitMessage $.RepoLink $.Repository.ComposeMetas}}</span> · {{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Commit.Committer.When $.i18n.Lang}}</p>
2017-10-25 20:49:16 -04:00
{{end}}
2019-06-27 10:15:30 -04:00
</td>
2019-07-28 22:27:05 -04:00
<td class="three wide ui">
2019-06-27 10:15:30 -04:00
{{if not .IsDeleted}}
2019-05-05 12:25:25 -04:00
<div class="commit-divergence">
<div class="bar-group">
<div class="count count-behind">{{.CommitsBehind}}</div>
<div class="bar bar-behind" style="width: {{percentage .CommitsBehind .CommitsBehind .CommitsAhead}}%"></div>
</div>
<div class="bar-group">
<div class="count count-ahead">{{.CommitsAhead}}</div>
2019-07-27 10:11:14 -04:00
<div class="bar bar-ahead" style="width: {{percentage .CommitsAhead .CommitsBehind .CommitsAhead}}%"></div>
2019-05-05 12:25:25 -04:00
</div>
</div>
2019-06-27 10:15:30 -04:00
{{end}}
</td>
2020-02-01 08:54:25 -05:00
<td class="three wide right aligned">
2019-06-27 10:15:30 -04:00
{{if not .LatestPullRequest}}
2019-10-14 18:40:17 -04:00
{{if .IsIncluded}}
<a class="ui poping up orange small label" data-content="{{$.i18n.Tr "repo.branch.included_desc"}}" data-variation="tiny inverted" data-position="top right">
2020-02-11 12:02:41 -05:00
{{svg "octicon-git-pull-request" 16}} {{$.i18n.Tr "repo.branch.included"}}
2019-10-14 18:40:17 -04:00
</a>
{{else if and (not .IsDeleted) $.AllowsPulls (gt .CommitsAhead 0)}}
2019-06-27 10:15:30 -04:00
<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
2020-01-07 12:06:14 -05:00
<button id="new-pull-request" class="ui compact basic button">{{$.i18n.Tr "repo.pulls.compare_changes"}}</button>
</a>
{{end}}
{{else if and .LatestPullRequest.HasMerged .MergeMovedOn}}
{{if and (not .IsDeleted) $.AllowsPulls (gt .CommitsAhead 0)}}
<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
2019-06-27 10:15:30 -04:00
<button id="new-pull-request" class="ui compact basic button">{{$.i18n.Tr "repo.pulls.compare_changes"}}</button>
</a>
{{end}}
{{else}}
2020-02-01 08:54:25 -05:00
<a href="{{.LatestPullRequest.Issue.HTMLURL}}">{{if not .LatestPullRequest.IsSameRepo}}{{.LatestPullRequest.BaseRepo.FullName}}{{end}} #{{.LatestPullRequest.Issue.Index}}</a>
2019-06-27 10:15:30 -04:00
{{if .LatestPullRequest.HasMerged}}
2020-02-11 12:02:41 -05:00
<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui purple mini label">{{svg "octicon-git-pull-request" 16}} {{$.i18n.Tr "repo.pulls.merged"}}</a>
2019-06-27 10:15:30 -04:00
{{else if .LatestPullRequest.Issue.IsClosed}}
2020-02-11 12:02:41 -05:00
<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui red mini label">{{svg "octicon-issue-closed" 16}} {{$.i18n.Tr "repo.issues.closed_title"}}</a>
2019-06-27 10:15:30 -04:00
{{else}}
2020-02-11 12:02:41 -05:00
<a href="{{.LatestPullRequest.Issue.HTMLURL}}" class="ui green mini label">{{svg "octicon-issue-opened" 16}} {{$.i18n.Tr "repo.issues.open_title"}}</a>
2019-06-27 10:15:30 -04:00
{{end}}
{{end}}
2019-05-05 12:25:25 -04:00
</td>
2019-07-28 22:27:05 -04:00
<td class="two wide right aligned overflow-visible">
{{if (not .IsDeleted)}}
2019-11-16 07:03:07 -05:00
<div class="ui basic jump dropdown icon button poping up" data-content="{{$.i18n.Tr "repo.branch.download" (.Name)}}" data-variation="tiny inverted" data-position="top right">
2019-07-28 22:27:05 -04:00
<i class="download icon"></i>
<div class="menu">
2020-02-11 12:02:41 -05:00
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound .Name}}.zip">{{svg "octicon-file-zip" 16}} ZIP</a>
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound .Name}}.tar.gz">{{svg "octicon-file-zip" 16}} TAR.GZ</a>
2019-07-28 22:27:05 -04:00
</div>
</div>
2017-10-25 20:49:16 -04:00
{{end}}
2019-07-29 01:00:43 -04:00
{{if and $.IsWriter (not $.IsMirror) (not $.Repository.IsArchived) (not .IsProtected)}}
2019-07-28 22:27:05 -04:00
{{if .IsDeleted}}
2020-02-11 12:02:41 -05:00
<a class="ui basic jump button icon poping up undo-button" href data-url="{{$.Link}}/restore?branch_id={{.DeletedBranch.ID | urlquery}}&name={{.DeletedBranch.Name | urlquery}}" data-content="{{$.i18n.Tr "repo.branch.restore" (.Name)}}" data-variation="tiny inverted" data-position="top right"><span class="text blue">{{svg "octicon-reply" 16}}</span></a>
2019-07-28 22:27:05 -04:00
{{else}}
2019-11-16 07:03:07 -05:00
<a class="ui basic jump button icon poping up delete-branch-button" href data-url="{{$.Link}}/delete?name={{.Name | urlquery}}" data-content="{{$.i18n.Tr "repo.branch.delete" (.Name)}}" data-variation="tiny inverted" data-position="top right" data-name="{{.Name}}"><i class="trash icon text red"></i></a>
2019-07-28 22:27:05 -04:00
{{end}}
{{end}}
</td>
2017-10-25 20:49:16 -04:00
</tr>
{{end}}
{{end}}
</tbody>
</table>
</div>
{{end}}
</div>
</div>
<div class="ui small basic delete modal">
<div class="ui icon header">
<i class="trash icon"></i>
2019-01-06 15:08:25 -05:00
{{.i18n.Tr "repo.branch.delete_html"}} <span class="name"></span>
2017-10-25 20:49:16 -04:00
</div>
<div class="content">
2018-07-19 11:25:17 -04:00
<p>{{.i18n.Tr "repo.branch.delete_desc" | Str2html}}</p>
2017-10-25 20:49:16 -04:00
</div>
{{template "base/delete_modal_actions" .}}
</div>
{{template "base/footer" .}}