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" >
2023-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.default_branch" }}
2023-04-29 16:14:52 +05:30
{{ if and $.IsWriter ( not $.Repository.IsArchived ) ( not .IsDeleted ) }}
2023-09-25 14:26:50 +05:30
< a role = "button" class = "right" href = " {{ .RepoLink }} /settings/branches" data-tooltip-content = " {{ ctx .Locale.Tr "repo.settings.branches.switch_default_branch" }} " >
2023-04-29 16:14:52 +05:30
{{ 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 >
2023-09-28 09:34:32 +05:30
< div class = "flex-text-block" >
{{ if .DefaultBranchBranch.IsProtected }}{{ svg "octicon-shield-lock" }}{{ end }}
2023-06-30 23:46:17 +05:30
< a class = "gt-ellipsis" href = " {{ .RepoLink }} /src/branch/ {{ PathEscapeSegments .DefaultBranchBranch.DBBranch.Name }} " > {{ .DefaultBranchBranch.DBBranch.Name }} </ a >
2023-09-28 09:34:32 +05:30
< button class = "btn interact-fg gt-px-2" data-clipboard-text = " {{ .DefaultBranchBranch.DBBranch.Name }} " > {{ svg "octicon-copy" 14 }} </ button >
2023-07-03 09:02:21 +05:30
{{ template "repo/commit_statuses" dict "Status" ( index $.CommitStatus .DefaultBranchBranch.DBBranch.CommitID ) "Statuses" ( index $.CommitStatuses .DefaultBranchBranch.DBBranch.CommitID ) }}
2023-06-30 23:46:17 +05:30
< / div >
2024-01-15 14:19:24 +05:30
< p class = "info gt-df gt-ac gt-my-2" > {{ svg "octicon-git-commit" 16 "gt-mr-2" }} < a href = " {{ .RepoLink }} /commit/ {{ PathEscape .DefaultBranchBranch.DBBranch.CommitID }} " > {{ ShortSha .DefaultBranchBranch.DBBranch.CommitID }} </ a > · < span class = "commit-message" > {{ RenderCommitMessage $.Context .DefaultBranchBranch.DBBranch.CommitMessage ( .Repository.ComposeMetas ctx ) }} </ span > · {{ ctx .Locale.Tr "org.repo_updated" }} {{ TimeSince .DefaultBranchBranch.DBBranch.CommitTime.AsTime ctx .Locale }}{{ if .DefaultBranchBranch.DBBranch.Pusher }} {{ template "shared/user/avatarlink" dict "user" .DefaultBranchBranch.DBBranch.Pusher }}{{ template "shared/user/namelink" .DefaultBranchBranch.DBBranch.Pusher }}{{ end }} </ p >
2022-01-16 20:29:16 +05:30
< / td >
2023-07-04 23:15:45 +05:30
< td class = "right aligned middle aligned overflow-visible" >
2022-01-16 20:29:16 +05:30
{{ if and $.IsWriter ( not $.Repository.IsArchived ) ( not .IsDeleted ) }}
2023-06-09 14:07:47 +05:30
< button class = "btn interact-bg show-create-branch-modal gt-p-3"
2023-04-30 20:38:51 +05:30
data-modal="#create-branch-modal"
2023-07-09 14:39:06 +05:30
data-branch-from="{{ $.DefaultBranchBranch.DBBranch.Name }} "
2023-06-29 15:33:20 +05:30
data-branch-from-urlcomponent="{{ PathEscapeSegments $.DefaultBranchBranch.DBBranch.Name }} "
2023-09-25 14:26:50 +05:30
data-tooltip-content="{{ ctx .Locale.Tr "repo.branch.new_branch_from" ( $.DefaultBranchBranch.DBBranch.Name ) }} "
2023-04-30 20:38:51 +05:30
>
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-06-29 15:33:20 +05:30
< a role = "button" class = "btn interact-bg gt-p-3" href = " {{ $.FeedURL }} /rss/branch/ {{ PathEscapeSegments .DefaultBranchBranch.DBBranch.Name }} " > {{ svg "octicon-rss" }} </ a >
2023-04-25 19:38:29 +05:30
{{ end }}
2022-07-31 22:27:02 +05:30
{{ if not $.DisableDownloadSourceArchives }}
2023-09-25 14:26:50 +05:30
< div class = "ui dropdown btn interact-bg gt-p-3" data-tooltip-content = " {{ ctx .Locale.Tr "repo.branch.download" ( $.DefaultBranchBranch.DBBranch.Name ) }} " >
2022-07-31 22:27:02 +05:30
{{ svg "octicon-download" }}
< div class = "menu" >
2023-06-29 15:33:20 +05:30
< a class = "item archive-link" href = " {{ $.RepoLink }} /archive/ {{ PathEscapeSegments $.DefaultBranchBranch.DBBranch.Name }} .zip" rel = "nofollow" > {{ svg "octicon-file-zip" }} ZIP</ a >
< a class = "item archive-link" href = " {{ $.RepoLink }} /archive/ {{ PathEscapeSegments $.DefaultBranchBranch.DBBranch.Name }} .tar.gz" rel = "nofollow" > {{ svg "octicon-file-zip" }} TAR.GZ</ a >
2022-07-31 22:27:02 +05:30
< / div >
2023-04-30 20:38:51 +05:30
< / div >
{{ end }}
{{ if and $.IsWriter ( not $.Repository.IsArchived ) ( not .IsDeleted ) ( not $.IsMirror ) }}
2023-06-09 14:07:47 +05:30
< button class = "btn interact-bg gt-p-3 show-modal show-rename-branch-modal"
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"
2023-07-26 16:56:17 +05:30
data-old-branch-name="{{ $.DefaultBranchBranch.DBBranch.Name }} "
2023-09-25 14:26:50 +05:30
data-tooltip-content="{{ ctx .Locale.Tr "repo.branch.rename" ( $.DefaultBranchBranch.DBBranch.Name ) }} "
2023-04-30 20:38:51 +05:30
>
{{ 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
2023-06-29 15:33:20 +05:30
{{ if .Branches }}
2023-09-17 13:54:40 +05:30
< h4 class = "ui top attached header gt-df gt-ac gt-sb" >
< div class = "gt-df gt-ac" >
2023-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.branches" }}
2023-09-17 13:54:40 +05:30
< / div >
< div class = "gt-whitespace-nowrap" >
< form class = "ignore-dirty" method = "get" >
< div class = "ui tiny search input" >
2023-09-25 14:26:50 +05:30
< input name = "q" placeholder = " {{ ctx .Locale.Tr "repo.branch.search" }} " value = " {{ .Keyword }} " autofocus >
2023-09-17 13:54:40 +05:30
< / div >
2023-09-25 18:12:40 +05:30
< button class = "ui primary tiny button gt-mr-0" data-tooltip-content = {{ ctx .Locale.Tr "repo.commits.search.tooltip" }} > {{ ctx .Locale.Tr "repo.commits.find" }} </button >
2023-09-17 13:54:40 +05:30
< / form >
< / div >
2017-10-26 06:19:16 +05:30
< / h4 >
2023-09-17 13:54:40 +05:30
2017-10-26 06:19:16 +05:30
< 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 }}
2023-06-29 15:33:20 +05:30
< tr >
< td class = "eight wide" >
{{ if .DBBranch.IsDeleted }}
2023-09-28 09:34:32 +05:30
< div class = "flex-text-block" >
2023-06-30 23:46:17 +05:30
< a class = "gt-ellipsis" href = " {{ $.RepoLink }} /src/branch/ {{ PathEscapeSegments .DBBranch.Name }} " > {{ .DBBranch.Name }} </ a >
2023-09-28 09:34:32 +05:30
< button class = "btn interact-fg gt-px-2" data-clipboard-text = " {{ .DBBranch.Name }} " > {{ svg "octicon-copy" 14 }} </ button >
2023-06-30 23:46:17 +05:30
< / div >
2023-09-25 18:12:40 +05:30
< p class = "info" > {{ ctx .Locale.Tr "repo.branch.deleted_by" .DBBranch.DeletedBy.Name }} {{ TimeSinceUnix .DBBranch.DeletedUnix ctx .Locale }} </ p >
2023-06-29 15:33:20 +05:30
{{ else }}
2023-09-28 09:34:32 +05:30
< div class = "flex-text-block" >
{{ if .IsProtected }}{{ svg "octicon-shield-lock" }}{{ end }}
2023-06-30 23:46:17 +05:30
< a class = "gt-ellipsis" href = " {{ $.RepoLink }} /src/branch/ {{ PathEscapeSegments .DBBranch.Name }} " > {{ .DBBranch.Name }} </ a >
2023-09-28 09:34:32 +05:30
< button class = "btn interact-fg gt-px-2" data-clipboard-text = " {{ .DBBranch.Name }} " > {{ svg "octicon-copy" 14 }} </ button >
2023-07-03 09:02:21 +05:30
{{ template "repo/commit_statuses" dict "Status" ( index $.CommitStatus .DBBranch.CommitID ) "Statuses" ( index $.CommitStatuses .DBBranch.CommitID ) }}
2023-06-30 23:46:17 +05:30
< / div >
2024-01-15 14:19:24 +05:30
< p class = "info gt-df gt-ac gt-my-2" > {{ svg "octicon-git-commit" 16 "gt-mr-2" }} < a href = " {{ $.RepoLink }} /commit/ {{ PathEscape .DBBranch.CommitID }} " > {{ ShortSha .DBBranch.CommitID }} </ a > · < span class = "commit-message" > {{ RenderCommitMessage $.Context .DBBranch.CommitMessage ( $.Repository.ComposeMetas ctx ) }} </ span > · {{ ctx .Locale.Tr "org.repo_updated" }} {{ TimeSince .DBBranch.CommitTime.AsTime ctx .Locale }}{{ if .DBBranch.Pusher }} {{ template "shared/user/avatarlink" dict "user" .DBBranch.Pusher }} {{ template "shared/user/namelink" .DBBranch.Pusher }}{{ end }} </ p >
2023-06-29 15:33:20 +05:30
{{ end }}
< / td >
< td class = "two wide ui" >
{{ if and ( not .DBBranch.IsDeleted ) $.DefaultBranchBranch }}
< div class = "commit-divergence" >
< div class = "bar-group" >
< div class = "count count-behind" > {{ .CommitsBehind }} </ div >
{{/* old code bears 0/0.0 = NaN output, so it might output invalid "width: NaNpx", it just works and doesn't caues any problem. */}}
< div class = "bar bar-behind" style = "width: {{ Eval 100 "*" .CommitsBehind "/" "(" .CommitsBehind "+" .CommitsAhead "+" 0 .0 ")" }} %" ></ div >
< / div >
< div class = "bar-group" >
< div class = "count count-ahead" > {{ .CommitsAhead }} </ div >
< div class = "bar bar-ahead" style = "width: {{ Eval 100 "*" .CommitsAhead "/" "(" .CommitsBehind "+" .CommitsAhead "+" 0 .0 ")" }} %" ></ div >
< / div >
< / div >
{{ end }}
< / td >
< td class = "two wide right aligned" >
{{ if not .LatestPullRequest }}
{{ if .IsIncluded }}
2023-09-25 14:26:50 +05:30
< span class = "ui orange large label" data-tooltip-content = " {{ ctx .Locale.Tr "repo.branch.included_desc" }} " >
{{ svg "octicon-git-pull-request" }} {{ ctx .Locale.Tr "repo.branch.included" }}
2023-06-29 15:33:20 +05:30
< / span >
{{ else if and ( not .DBBranch.IsDeleted ) $.AllowsPulls ( gt .CommitsAhead 0 ) }}
< a href = " {{ $.RepoLink }} /compare/ {{ PathEscapeSegments $.DefaultBranchBranch.DBBranch.Name }} ... {{ if ne $.Repository.Owner.Name $.Owner.Name }}{{ PathEscape $.Owner.Name }} : {{ end }}{{ PathEscapeSegments .DBBranch.Name }} " >
2023-09-25 14:26:50 +05:30
< button id = "new-pull-request" class = "ui compact basic button gt-mr-0" > {{ if $.CanPull }}{{ ctx .Locale.Tr "repo.pulls.compare_changes" }}{{ else }}{{ ctx .Locale.Tr "action.compare_branch" }}{{ end }} </ button >
2023-06-29 15:33:20 +05:30
< / a >
{{ end }}
{{ else if and .LatestPullRequest.HasMerged .MergeMovedOn }}
{{ if and ( not .DBBranch.IsDeleted ) $.AllowsPulls ( gt .CommitsAhead 0 ) }}
2023-07-14 11:38:38 +05:30
< a href = " {{ $.RepoLink }} /compare/ {{ PathEscapeSegments $.DefaultBranchBranch.DBBranch.Name }} ... {{ if ne $.Repository.Owner.Name $.Owner.Name }}{{ PathEscape $.Owner.Name }} : {{ end }}{{ PathEscapeSegments .DBBranch.Name }} " >
2023-09-25 14:26:50 +05:30
< button id = "new-pull-request" class = "ui compact basic button gt-mr-0" > {{ if $.CanPull }}{{ ctx .Locale.Tr "repo.pulls.compare_changes" }}{{ else }}{{ ctx .Locale.Tr "action.compare_branch" }}{{ end }} </ button >
2023-06-29 15:33:20 +05:30
< / a >
{{ end }}
2017-10-26 06:19:16 +05:30
{{ else }}
2023-06-29 15:33:20 +05:30
< a href = " {{ .LatestPullRequest.Issue.Link }} " class = "gt-vm ref-issue" > {{ if not .LatestPullRequest.IsSameRepo }}{{ .LatestPullRequest.BaseRepo.FullName }}{{ end }} #{{ .LatestPullRequest.Issue.Index }} </ a >
{{ if .LatestPullRequest.HasMerged }}
2023-09-25 14:26:50 +05:30
< a href = " {{ .LatestPullRequest.Issue.Link }} " class = "ui purple large label" > {{ svg "octicon-git-merge" 16 "gt-mr-2" }}{{ ctx .Locale.Tr "repo.pulls.merged" }} </ a >
2023-06-29 15:33:20 +05:30
{{ else if .LatestPullRequest.Issue.IsClosed }}
2023-09-25 14:26:50 +05:30
< a href = " {{ .LatestPullRequest.Issue.Link }} " class = "ui red large label" > {{ svg "octicon-git-pull-request" 16 "gt-mr-2" }}{{ ctx .Locale.Tr "repo.issues.closed_title" }} </ a >
2023-06-29 15:33:20 +05:30
{{ else }}
2023-09-25 14:26:50 +05:30
< a href = " {{ .LatestPullRequest.Issue.Link }} " class = "ui green large label" > {{ svg "octicon-git-pull-request" 16 "gt-mr-2" }}{{ ctx .Locale.Tr "repo.issues.open_title" }} </ a >
2019-07-18 01:32:41 +05:30
{{ end }}
2017-10-26 06:19:16 +05:30
{{ end }}
2023-06-29 15:33:20 +05:30
< / td >
< td class = "three wide right aligned overflow-visible" >
{{ if and $.IsWriter ( not $.Repository.IsArchived ) ( not .DBBranch.IsDeleted ) }}
< button class = "btn interact-bg gt-p-3 show-modal show-create-branch-modal"
data-branch-from="{{ .DBBranch.Name }} "
data-branch-from-urlcomponent="{{ PathEscapeSegments .DBBranch.Name }} "
2023-09-25 14:26:50 +05:30
data-tooltip-content="{{ ctx .Locale.Tr "repo.branch.new_branch_from" .DBBranch.Name }} "
2023-06-29 15:33:20 +05:30
data-modal="#create-branch-modal" data-name="{{ .DBBranch.Name }} "
>
{{ svg "octicon-git-branch" }}
< / button >
{{ end }}
{{ if $.EnableFeed }}
< a role = "button" class = "btn interact-bg gt-p-3" href = " {{ $.FeedURL }} /rss/branch/ {{ PathEscapeSegments .DBBranch.Name }} " > {{ svg "octicon-rss" }} </ a >
{{ end }}
{{ if and ( not .DBBranch.IsDeleted ) ( not $.DisableDownloadSourceArchives ) }}
2023-09-25 14:26:50 +05:30
< div class = "ui dropdown btn interact-bg gt-p-3" data-tooltip-content = " {{ ctx .Locale.Tr "repo.branch.download" ( .DBBranch.Name ) }} " >
2023-06-29 15:33:20 +05:30
{{ svg "octicon-download" }}
< div class = "menu" >
< a class = "item archive-link" href = " {{ $.RepoLink }} /archive/ {{ PathEscapeSegments .DBBranch.Name }} .zip" rel = "nofollow" > {{ svg "octicon-file-zip" }} ZIP</ a >
< a class = "item archive-link" href = " {{ $.RepoLink }} /archive/ {{ PathEscapeSegments .DBBranch.Name }} .tar.gz" rel = "nofollow" > {{ svg "octicon-file-zip" }} TAR.GZ</ a >
2019-05-05 21:55:25 +05:30
< / div >
< / div >
2023-06-29 15:33:20 +05:30
{{ end }}
{{ if and $.IsWriter ( not $.Repository.IsArchived ) ( not .DBBranch.IsDeleted ) ( not $.IsMirror ) }}
< button class = "btn interact-bg gt-p-3 show-modal show-rename-branch-modal"
data-is-default-branch="false"
data-old-branch-name="{{ .DBBranch.Name }} "
data-modal="#rename-branch-modal"
2023-09-25 14:26:50 +05:30
data-tooltip-content="{{ ctx .Locale.Tr "repo.branch.rename" ( .DBBranch.Name ) }} "
2023-06-29 15:33:20 +05:30
>
{{ svg "octicon-pencil" }}
< / button >
{{ end }}
{{ if and $.IsWriter ( not $.IsMirror ) ( not $.Repository.IsArchived ) ( not .IsProtected ) }}
{{ if .DBBranch.IsDeleted }}
2023-09-25 14:26:50 +05:30
< button class = "btn interact-bg gt-p-3 link-action restore-branch-button" data-url = " {{ $.Link }} /restore?branch_id= {{ .DBBranch.ID }} &name= {{ .DBBranch.Name }} &page= {{ $.Page.Paginater.Current }} " data-tooltip-content = " {{ ctx .Locale.Tr "repo.branch.restore" ( .DBBranch.Name ) }} " >
2023-06-29 15:33:20 +05:30
< span class = "text blue" >
{{ svg "octicon-reply" }}
2023-03-14 10:41:38 +05:30
< / span >
2022-11-24 17:59:43 +05:30
< / button >
2023-06-29 15:33:20 +05:30
{{ else }}
2023-09-25 14:26:50 +05:30
< button class = "btn interact-bg gt-p-3 delete-button delete-branch-button" data-url = " {{ $.Link }} /delete?name= {{ .DBBranch.Name }} &page= {{ $.Page.Paginater.Current }} " data-tooltip-content = " {{ ctx .Locale.Tr "repo.branch.delete" ( .DBBranch.Name ) }} " data-name = " {{ .DBBranch.Name }} " >
2023-06-29 15:33:20 +05:30
{{ svg "octicon-trash" }}
2022-11-24 17:59:43 +05:30
< / button >
2017-10-26 06:19:16 +05:30
{{ end }}
2023-06-29 15:33:20 +05:30
{{ end }}
< / td >
< / tr >
2017-10-26 06:19:16 +05:30
{{ 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" }}
2023-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.branch.delete_html" }} < span class = "name" ></ span >
2017-10-26 06:19:16 +05:30
< / div >
< div class = "content" >
2023-09-25 14:26:50 +05:30
< p > {{ ctx .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" >
2023-09-25 14:26:50 +05:30
{{ ctx .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-09-25 14:26:50 +05:30
{{ ctx .Locale.Tr "repo.branch.create_new_branch" }}
2023-04-30 20:38:51 +05:30
< span id = "modal-create-branch-from-span" > < / span >
2021-05-24 20:27:46 +05:30
< / div >
< div class = "required field" >
2023-09-25 14:26:50 +05:30
< label for = "new_branch_name" > {{ ctx .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 >
2023-09-25 02:01:58 +05:30
{{ template "base/modal_actions_confirm" ( dict "ModalButtonTypes" "confirm" ) }}
2023-04-30 20:38:51 +05:30
< / 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" >
2023-09-25 14:26:50 +05:30
{{ ctx .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-09-25 14:26:50 +05:30
< span class = "text red" > {{ ctx .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" >
2023-09-25 14:26:50 +05:30
< span class = "text" data-rename-branch-to = " {{ ctx .Locale.Tr "repo.branch.rename_branch_to" }} " ></ span >
2023-04-30 20:38:51 +05:30
< / div >
< input name = "from" type = "hidden" required >
< div class = "required field" >
< input name = "to" required >
< / div >
< / div >
2023-09-25 02:01:58 +05:30
{{ template "base/modal_actions_confirm" ( dict "ModalButtonTypes" "confirm" ) }}
2023-04-30 20:38:51 +05:30
< / form >
2021-05-24 20:27:46 +05:30
< / div >
2017-10-26 06:19:16 +05:30
{{ template "base/footer" . }}