2017-10-26 06:19:16 +05:30
{{ template "base/head" . }}
2023-02-02 04:26:10 +05:30
<div role="main" aria-label=" {{ .Title }} " class="page-content ui repository branches">
2017-10-26 06:19:16 +05:30
{{ template "repo/header" . }}
<div class="ui container">
{{ template "base/alert" . }}
{{ template "repo/sub_menu" . }}
2022-01-16 20:29:16 +05:30
{{ if .DefaultBranchBranch }}
2023-04-29 16:14:52 +05:30
<h4 class="ui top attached header">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.default_branch" }}
2023-04-29 16:14:52 +05:30
{{ if and $ .IsWriter ( not $ .Repository .IsArchived ) ( not .IsDeleted ) }}
<a role="button" class="right" href=" {{ .RepoLink }} /settings/branches" data-tooltip-content=" {{ .locale .Tr "repo.settings.branches.switch_default_branch" }} ">
{{ svg "octicon-arrow-switch" }}
</a>
{{ end }}
2022-01-16 20:29:16 +05:30
</h4>
2017-10-26 06:19:16 +05:30
2022-01-16 20:29:16 +05:30
<div class="ui attached table segment">
<table class="ui very basic striped fixed table single line">
<tbody>
<tr>
<td>
{{ if .DefaultBranchBranch .IsProtected }}
2020-09-12 01:49:00 +05:30
{{ svg "octicon-shield-lock" }}
2019-07-18 01:32:41 +05:30
{{ end }}
2022-01-16 20:29:16 +05:30
<a href=" {{ .RepoLink }} /src/branch/ {{ PathEscapeSegments .DefaultBranch }} "> {{ .DefaultBranch }} </a>
2023-02-13 23:29:59 +05:30
<p class="info gt-df gt-ac gt-my-2"> {{ svg "octicon-git-commit" 1 6 "gt-mr-2" }} <a href=" {{ .RepoLink }} /commit/ {{ PathEscape .DefaultBranchBranch .Commit .ID .String }} "> {{ ShortSha .DefaultBranchBranch .Commit .ID .String }} </a> · <span class="commit-message"> {{ RenderCommitMessage $ .Context .DefaultBranchBranch .Commit .CommitMessage .RepoLink .Repository .ComposeMetas }} </span> · {{ .locale .Tr "org.repo_updated" }} {{ TimeSince .DefaultBranchBranch .Commit .Committer .When .locale }} </p>
2022-01-16 20:29:16 +05:30
</td>
<td class="right aligned overflow-visible">
{{ if and $ .IsWriter ( not $ .Repository .IsArchived ) ( not .IsDeleted ) }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost show-create-branch-modal gt-mx-3"
2023-04-30 20:38:51 +05:30
data-modal="#create-branch-modal"
data-branch-from=" {{ $ .DefaultBranch }} "
data-branch-from-urlcomponent=" {{ PathEscapeSegments $ .DefaultBranch }} "
data-tooltip-content=" {{ $ .locale .Tr "repo.branch.new_branch_from" ( $ .DefaultBranch ) }} "
>
2022-01-16 20:29:16 +05:30
{{ svg "octicon-git-branch" }}
2022-11-24 17:59:43 +05:30
</button>
2022-01-16 20:29:16 +05:30
{{ end }}
2023-04-25 19:38:29 +05:30
{{ if .EnableFeed }}
2023-05-14 02:08:22 +05:30
<a role="button" class="ui button button-ghost gt-mx-3" href=" {{ $ .FeedURL }} /rss/branch/ {{ PathEscapeSegments .DefaultBranch }} ">
2023-04-25 19:38:29 +05:30
{{ svg "octicon-rss" }}
</a>
{{ end }}
2022-07-31 22:27:02 +05:30
{{ if not $ .DisableDownloadSourceArchives }}
2023-05-14 02:08:22 +05:30
<div class="ui dropdown button button-ghost gt-mx-3" data-tooltip-content=" {{ $ .locale .Tr "repo.branch.download" ( $ .DefaultBranch ) }} ">
2022-07-31 22:27:02 +05:30
{{ svg "octicon-download" }}
<div class="menu">
<a class="item archive-link" href=" {{ $ .RepoLink }} /archive/ {{ PathEscapeSegments $ .DefaultBranch }} .zip" rel="nofollow"> {{ svg "octicon-file-zip" }} ZIP</a>
<a class="item archive-link" href=" {{ $ .RepoLink }} /archive/ {{ PathEscapeSegments $ .DefaultBranch }} .tar.gz" rel="nofollow"> {{ svg "octicon-file-zip" }} TAR.GZ</a>
</div>
2023-04-30 20:38:51 +05:30
</div>
{{ end }}
{{ if and $ .IsWriter ( not $ .Repository .IsArchived ) ( not .IsDeleted ) ( not $ .IsMirror ) }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost show-modal show-rename-branch-modal gt-mx-3"
2023-05-05 04:24:38 +05:30
data-is-default-branch="true"
2023-04-30 20:38:51 +05:30
data-modal="#rename-branch-modal"
data-old-branch-name=" {{ $ .DefaultBranch }} "
data-tooltip-content=" {{ $ .locale .Tr "repo.branch.rename" ( $ .DefaultBranch ) }} "
>
{{ svg "octicon-pencil" }}
2022-11-24 17:59:43 +05:30
</button>
2022-07-31 22:27:02 +05:30
{{ end }}
2022-01-16 20:29:16 +05:30
</td>
</tr>
</tbody>
</table>
</div>
{{ end }}
2017-10-26 06:19:16 +05:30
{{ if gt ( len .Branches ) 1 }}
<h4 class="ui top attached header">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.branches" }}
2017-10-26 06:19:16 +05:30
</h4>
<div class="ui attached table segment">
<table class="ui very basic striped fixed table single line">
<tbody>
2019-07-30 20:32:58 +05:30
{{ range .Branches }}
2017-10-26 06:19:16 +05:30
{{ if ne .Name $ .DefaultBranch }}
<tr>
2019-07-26 16:51:14 +05:30
<td class="six wide">
2017-10-26 06:19:16 +05:30
{{ if .IsDeleted }}
2021-11-16 23:48:25 +05:30
<s><a href=" {{ $ .RepoLink }} /src/branch/ {{ PathEscapeSegments .Name }} "> {{ .Name }} </a></s>
2022-06-28 02:28:46 +05:30
<p class="info"> {{ $ .locale .Tr "repo.branch.deleted_by" .DeletedBranch .DeletedBy .Name }} {{ TimeSinceUnix .DeletedBranch .DeletedUnix $ .locale }} </p>
2017-10-26 06:19:16 +05:30
{{ else }}
2019-07-18 01:32:41 +05:30
{{ if .IsProtected }}
2020-09-12 01:49:00 +05:30
{{ svg "octicon-shield-lock" }}
2019-07-18 01:32:41 +05:30
{{ end }}
2021-11-16 23:48:25 +05:30
<a href=" {{ $ .RepoLink }} /src/branch/ {{ PathEscapeSegments .Name }} "> {{ .Name }} </a>
2023-02-13 23:29:59 +05:30
<p class="info gt-df gt-ac gt-my-2"> {{ svg "octicon-git-commit" 1 6 "gt-mr-2" }} <a href=" {{ $ .RepoLink }} /commit/ {{ PathEscape .Commit .ID .String }} "> {{ ShortSha .Commit .ID .String }} </a> · <span class="commit-message"> {{ RenderCommitMessage $ .Context .Commit .CommitMessage $ .RepoLink $ .Repository .ComposeMetas }} </span> · {{ $ .locale .Tr "org.repo_updated" }} {{ TimeSince .Commit .Committer .When $ .locale }} </p>
2017-10-26 06:19:16 +05:30
{{ end }}
2019-06-27 19:45:30 +05:30
</td>
2019-07-29 07:57:05 +05:30
<td class="three wide ui">
2022-01-16 20:29:16 +05:30
{{ if and ( not .IsDeleted ) $ .DefaultBranchBranch }}
2019-05-05 21:55:25 +05:30
<div class="commit-divergence">
<div class="bar-group">
<div class="count count-behind"> {{ .CommitsBehind }} </div>
Use a general Eval function for expressions in templates. (#23927)
One of the proposals in #23328
This PR introduces a simple expression calculator
(templates/eval/eval.go), it can do basic expression calculations.
Many untested template helper functions like `Mul` `Add` can be replaced
by this new approach.
Then these `Add` / `Mul` / `percentage` / `Subtract` / `DiffStatsWidth`
could all use this `Eval`.
And it provides enhancements for Golang templates, and improves
readability.
Some examples:
----
* Before: `{{Add (Mul $glyph.Row 12) 12}}`
* After: `{{Eval $glyph.Row "*" 12 "+" 12}}`
----
* Before: `{{if lt (Add $i 1) (len $.Topics)}}`
* After: `{{if Eval $i "+" 1 "<" (len $.Topics)}}`
## FAQ
### Why not use an existing expression package?
We need a highly customized expression engine:
* do the calculation on the fly, without pre-compiling
* deal with int/int64/float64 types, to make the result could be used in
Golang template.
* make the syntax could be used in the Golang template directly
* do not introduce too much complex or strange syntax, we just need a
simple calculator.
* it needs to strictly follow Golang template's behavior, for example,
Golang template treats all non-zero values as truth, but many 3rd
packages don't do so.
### What's the benefit?
* Developers don't need to add more `Add`/`Mul`/`Sub`-like functions,
they were getting more and more.
Now, only one `Eval` is enough for all cases.
* The new code reads better than old `{{Add (Mul $glyph.Row 12) 12}}`,
the old one isn't familiar to most procedural programming developers
(eg, the Golang expression syntax).
* The `Eval` is fully covered by tests, many old `Add`/`Mul`-like
functions were never tested.
### The performance?
It doesn't use `reflect`, it doesn't need to parse or compile when used
in Golang template, the performance is as fast as native Go template.
### Is it too complex? Could it be unstable?
The expression calculator program is a common homework for computer
science students, and it's widely used as a teaching and practicing
purpose for developers. The algorithm is pretty well-known.
The behavior can be clearly defined, it is stable.
2023-04-07 18:55:49 +05:30
{{ / * old code bears 0 / 0 .0 = NaN output , so it might output in valid "width: NaNpx" , it just works and doesn ' t caues any problem . * / }}
<div class="bar bar-behind" style="width: {{ Eval 1 0 0 "*" .CommitsBehind "/" "(" .CommitsBehind "+" .CommitsAhead "+" 0.0 ")" }} %"></div>
2019-05-05 21:55:25 +05:30
</div>
<div class="bar-group">
<div class="count count-ahead"> {{ .CommitsAhead }} </div>
Use a general Eval function for expressions in templates. (#23927)
One of the proposals in #23328
This PR introduces a simple expression calculator
(templates/eval/eval.go), it can do basic expression calculations.
Many untested template helper functions like `Mul` `Add` can be replaced
by this new approach.
Then these `Add` / `Mul` / `percentage` / `Subtract` / `DiffStatsWidth`
could all use this `Eval`.
And it provides enhancements for Golang templates, and improves
readability.
Some examples:
----
* Before: `{{Add (Mul $glyph.Row 12) 12}}`
* After: `{{Eval $glyph.Row "*" 12 "+" 12}}`
----
* Before: `{{if lt (Add $i 1) (len $.Topics)}}`
* After: `{{if Eval $i "+" 1 "<" (len $.Topics)}}`
## FAQ
### Why not use an existing expression package?
We need a highly customized expression engine:
* do the calculation on the fly, without pre-compiling
* deal with int/int64/float64 types, to make the result could be used in
Golang template.
* make the syntax could be used in the Golang template directly
* do not introduce too much complex or strange syntax, we just need a
simple calculator.
* it needs to strictly follow Golang template's behavior, for example,
Golang template treats all non-zero values as truth, but many 3rd
packages don't do so.
### What's the benefit?
* Developers don't need to add more `Add`/`Mul`/`Sub`-like functions,
they were getting more and more.
Now, only one `Eval` is enough for all cases.
* The new code reads better than old `{{Add (Mul $glyph.Row 12) 12}}`,
the old one isn't familiar to most procedural programming developers
(eg, the Golang expression syntax).
* The `Eval` is fully covered by tests, many old `Add`/`Mul`-like
functions were never tested.
### The performance?
It doesn't use `reflect`, it doesn't need to parse or compile when used
in Golang template, the performance is as fast as native Go template.
### Is it too complex? Could it be unstable?
The expression calculator program is a common homework for computer
science students, and it's widely used as a teaching and practicing
purpose for developers. The algorithm is pretty well-known.
The behavior can be clearly defined, it is stable.
2023-04-07 18:55:49 +05:30
<div class="bar bar-ahead" style="width: {{ Eval 1 0 0 "*" .CommitsAhead "/" "(" .CommitsBehind "+" .CommitsAhead "+" 0.0 ")" }} %"></div>
2019-05-05 21:55:25 +05:30
</div>
</div>
2019-06-27 19:45:30 +05:30
{{ end }}
</td>
2020-02-01 19:24:25 +05:30
<td class="three wide right aligned">
2019-06-27 19:45:30 +05:30
{{ if not .LatestPullRequest }}
2019-10-15 04:10:17 +05:30
{{ if .IsIncluded }}
2023-03-24 16:05:38 +05:30
<span class="ui orange large label" data-tooltip-content=" {{ $ .locale .Tr "repo.branch.included_desc" }} ">
2022-06-28 02:28:46 +05:30
{{ svg "octicon-git-pull-request" }} {{ $ .locale .Tr "repo.branch.included" }}
2023-03-14 10:41:38 +05:30
</span>
2019-10-15 04:10:17 +05:30
{{ else if and ( not .IsDeleted ) $ .AllowsPulls ( gt .CommitsAhead 0 ) }}
2021-11-16 23:48:25 +05:30
<a href=" {{ $ .RepoLink }} /compare/ {{ PathEscapeSegments $ .DefaultBranch }} ... {{ if ne $ .Repository .Owner .Name $ .Owner .Name }} {{ PathEscape $ .Owner .Name }} : {{ end }} {{ PathEscapeSegments .Name }} ">
2023-02-13 23:29:59 +05:30
<button id="new-pull-request" class="ui compact basic button gt-mr-0"> {{ if $ .CanPull }} {{ $ .locale .Tr "repo.pulls.compare_changes" }} {{ else }} {{ $ .locale .Tr "action.compare_branch" }} {{ end }} </button>
2020-01-07 22:36:14 +05:30
</a>
{{ end }}
{{ else if and .LatestPullRequest .HasMerged .MergeMovedOn }}
{{ if and ( not .IsDeleted ) $ .AllowsPulls ( gt .CommitsAhead 0 ) }}
2021-11-16 23:48:25 +05:30
<a href=" {{ $ .RepoLink }} /compare/ {{ PathEscapeSegments $ .DefaultBranch }} ... {{ if ne $ .Repository .Owner .Name $ .Owner .Name }} {{ $ .Owner .Name }} : {{ end }} {{ .Name | PathEscapeSegments }} ">
2023-02-13 23:29:59 +05:30
<button id="new-pull-request" class="ui compact basic button gt-mr-0"> {{ if $ .CanPull }} {{ $ .locale .Tr "repo.pulls.compare_changes" }} {{ else }} {{ $ .locale .Tr "action.compare_branch" }} {{ end }} </button>
2019-06-27 19:45:30 +05:30
</a>
{{ end }}
{{ else }}
2023-02-13 23:29:59 +05:30
<a href=" {{ .LatestPullRequest .Issue .Link }} " class="gt-vm ref-issue"> {{ if not .LatestPullRequest .IsSameRepo }} {{ .LatestPullRequest .BaseRepo .FullName }} {{ end }} # {{ .LatestPullRequest .Issue .Index }} </a>
2019-06-27 19:45:30 +05:30
{{ if .LatestPullRequest .HasMerged }}
2023-02-13 23:29:59 +05:30
<a href=" {{ .LatestPullRequest .Issue .Link }} " class="ui text-label purple large label gt-vm"> {{ svg "octicon-git-merge" 1 6 "gt-mr-2" }} {{ $ .locale .Tr "repo.pulls.merged" }} </a>
2019-06-27 19:45:30 +05:30
{{ else if .LatestPullRequest .Issue .IsClosed }}
2023-02-13 23:29:59 +05:30
<a href=" {{ .LatestPullRequest .Issue .Link }} " class="ui text-label red large label gt-vm"> {{ svg "octicon-git-pull-request" 1 6 "gt-mr-2" }} {{ $ .locale .Tr "repo.issues.closed_title" }} </a>
2019-06-27 19:45:30 +05:30
{{ else }}
2023-02-13 23:29:59 +05:30
<a href=" {{ .LatestPullRequest .Issue .Link }} " class="ui text-label green large label gt-vm"> {{ svg "octicon-git-pull-request" 1 6 "gt-mr-2" }} {{ $ .locale .Tr "repo.issues.open_title" }} </a>
2019-06-27 19:45:30 +05:30
{{ end }}
{{ end }}
2019-05-05 21:55:25 +05:30
</td>
2022-10-28 19:18:48 +05:30
<td class="three wide right aligned overflow-visible">
2021-05-24 20:27:46 +05:30
{{ if and $ .IsWriter ( not $ .Repository .IsArchived ) ( not .IsDeleted ) }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost show-modal show-create-branch-modal gt-mx-3"
2023-04-30 20:38:51 +05:30
data-branch-from=" {{ .Name }} "
data-branch-from-urlcomponent=" {{ PathEscapeSegments .Name }} "
data-tooltip-content=" {{ $ .locale .Tr "repo.branch.new_branch_from" .Name }} "
data-modal="#create-branch-modal" data-name=" {{ .Name }} "
>
2021-05-24 20:27:46 +05:30
{{ svg "octicon-git-branch" }}
2022-11-24 17:59:43 +05:30
</button>
2021-05-24 20:27:46 +05:30
{{ end }}
2023-04-25 19:38:29 +05:30
{{ if $ .EnableFeed }}
2023-05-14 02:08:22 +05:30
<a role="button" class="ui button button-ghost gt-mx-3" href=" {{ $ .FeedURL }} /rss/branch/ {{ PathEscapeSegments .Name }} ">
2023-04-25 19:38:29 +05:30
{{ svg "octicon-rss" }}
</a>
{{ end }}
2022-08-08 19:12:36 +05:30
{{ if and ( not .IsDeleted ) ( not $ .DisableDownloadSourceArchives ) }}
2023-05-14 02:08:22 +05:30
<div class="ui dropdown button button-ghost gt-mx-3" data-tooltip-content=" {{ $ .locale .Tr "repo.branch.download" ( .Name ) }} ">
2021-04-03 14:07:32 +05:30
{{ svg "octicon-download" }}
2019-07-29 07:57:05 +05:30
<div class="menu">
2021-11-29 19:20:43 +05:30
<a class="item archive-link" href=" {{ $ .RepoLink }} /archive/ {{ PathEscapeSegments .Name }} .zip" rel="nofollow"> {{ svg "octicon-file-zip" }} ZIP</a>
<a class="item archive-link" href=" {{ $ .RepoLink }} /archive/ {{ PathEscapeSegments .Name }} .tar.gz" rel="nofollow"> {{ svg "octicon-file-zip" }} TAR.GZ</a>
2019-07-29 07:57:05 +05:30
</div>
2023-04-30 20:38:51 +05:30
</div>
{{ end }}
{{ if and $ .IsWriter ( not $ .Repository .IsArchived ) ( not .IsDeleted ) ( not $ .IsMirror ) }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost show-modal show-rename-branch-modal gt-mx-3"
2023-05-05 04:24:38 +05:30
data-is-default-branch="false"
2023-04-30 20:38:51 +05:30
data-old-branch-name=" {{ .Name }} "
data-modal="#rename-branch-modal"
data-tooltip-content=" {{ $ .locale .Tr "repo.branch.rename" ( .Name ) }} "
>
{{ svg "octicon-pencil" }}
2022-11-24 17:59:43 +05:30
</button>
2017-10-26 06:19:16 +05:30
{{ end }}
2019-07-29 10:30:43 +05:30
{{ if and $ .IsWriter ( not $ .IsMirror ) ( not $ .Repository .IsArchived ) ( not .IsProtected ) }}
2019-07-29 07:57:05 +05:30
{{ if .IsDeleted }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost undo-button gt-mx-3" data-url=" {{ $ .Link }} /restore?branch_id= {{ .DeletedBranch .ID }} &name= {{ .DeletedBranch .Name }} &page= {{ $ .Page .Paginater .Current }} " data-tooltip-content=" {{ $ .locale .Tr "repo.branch.restore" ( .Name ) }} ">
2022-11-24 17:59:43 +05:30
<span class="text blue">
{{ svg "octicon-reply" }}
</span>
</button>
2019-07-29 07:57:05 +05:30
{{ else }}
2023-05-14 02:08:22 +05:30
<button class="ui button button-ghost delete-button delete-branch-button gt-mx-3" data-url=" {{ $ .Link }} /delete?name= {{ .Name }} &page= {{ $ .Page .Paginater .Current }} " data-tooltip-content=" {{ $ .locale .Tr "repo.branch.delete" ( .Name ) }} " data-name=" {{ .Name }} ">
2021-03-22 09:34:19 +05:30
{{ svg "octicon-trash" }}
2022-11-24 17:59:43 +05:30
</button>
2019-07-29 07:57:05 +05:30
{{ end }}
{{ end }}
</td>
2017-10-26 06:19:16 +05:30
</tr>
{{ end }}
{{ end }}
</tbody>
</table>
</div>
2021-01-19 09:37:38 +05:30
{{ template "base/paginate" . }}
2017-10-26 06:19:16 +05:30
{{ end }}
</div>
</div>
2023-04-24 16:38:59 +05:30
<div class="ui g-modal-confirm delete modal">
2023-04-23 14:54:19 +05:30
<div class="header">
2021-03-22 09:34:19 +05:30
{{ svg "octicon-trash" }}
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.branch.delete_html" }} <span class="name"></span>
2017-10-26 06:19:16 +05:30
</div>
<div class="content">
2022-06-28 02:28:46 +05:30
<p> {{ .locale .Tr "repo.branch.delete_desc" | Str2html }} </p>
2017-10-26 06:19:16 +05:30
</div>
2023-04-23 14:54:19 +05:30
{{ template "base/modal_actions_confirm" . }}
2017-10-26 06:19:16 +05:30
</div>
2021-05-24 20:27:46 +05:30
2023-04-30 20:38:51 +05:30
<div class="ui mini modal" id="create-branch-modal">
2021-05-24 20:27:46 +05:30
<div class="header">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "repo.branch.new_branch" }}
2021-05-24 20:27:46 +05:30
</div>
2023-04-30 20:38:51 +05:30
<form class="ui form" id="create-branch-form" action="" data-base-action=" {{ .Link }} /_new/branch/" method="post">
<div class="content">
2021-05-24 20:27:46 +05:30
{{ .CsrfTokenHtml }}
<div class="field">
2023-04-30 20:38:51 +05:30
{{ .locale .Tr "repo.branch.create_new_branch" }}
<span id="modal-create-branch-from-span"></span>
2021-05-24 20:27:46 +05:30
</div>
<div class="required field">
2022-06-28 02:28:46 +05:30
<label for="new_branch_name"> {{ .locale .Tr "repo.branch.name" }} </label>
2021-05-24 20:27:46 +05:30
<input id="new_branch_name" name="new_branch_name" required>
</div>
2023-04-30 20:38:51 +05:30
</div>
{{ template "base/modal_actions_confirm" ( dict "locale" $ .locale "ModalButtonTypes" "confirm" ) }}
</form>
</div>
2021-05-24 20:27:46 +05:30
2023-04-30 20:38:51 +05:30
<div class="ui mini modal" id="rename-branch-modal">
<div class="header">
{{ .locale .Tr "repo.settings.rename_branch" }}
2021-05-24 20:27:46 +05:30
</div>
2023-04-30 20:38:51 +05:30
<form class="ui form" action=" {{ $ .Repository .Link }} /settings/rename_branch" method="post">
<div class="content">
{{ .CsrfTokenHtml }}
2023-05-05 04:24:38 +05:30
<div class="field default-branch-warning">
2023-05-05 10:14:59 +05:30
<span class="text red"> {{ .locale .Tr "repo.branch.warning_rename_default_branch" }} </span>
2023-05-05 04:24:38 +05:30
</div>
2023-04-30 20:38:51 +05:30
<div class="field">
<span class="text" data-rename-branch-to=" {{ .locale .Tr "repo.branch.rename_branch_to" }} "></span>
</div>
<input name="from" type="hidden" required>
<div class="required field">
<input name="to" required>
</div>
</div>
{{ template "base/modal_actions_confirm" ( dict "locale" $ .locale "ModalButtonTypes" "confirm" ) }}
</form>
2021-05-24 20:27:46 +05:30
</div>
2017-10-26 06:19:16 +05:30
{{ template "base/footer" . }}