2017-09-06 06:02:51 -06:00
|
|
|
{{if and (not .Issue.IsPull) (not .PageIsComparePull)}}
|
2021-12-17 14:29:09 -07:00
|
|
|
<input id="ref_selector" name="ref" type="hidden" value="{{.Reference}}">
|
2024-05-06 01:17:22 -06:00
|
|
|
<div class="ui dropdown select-branch branch-selector-dropdown ellipsis-items-nowrap {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}}"
|
2024-05-02 04:45:23 -06:00
|
|
|
data-no-results="{{ctx.Locale.Tr "no_results_found"}}"
|
2024-05-08 09:39:13 -06:00
|
|
|
{{if and .Issue (or .IsIssueWriter .HasIssuesOrPullsWritePermission)}}data-url-update-issueref="{{$.RepoLink}}/issues/{{.Issue.Index}}/ref"{{end}}
|
2024-05-02 04:45:23 -06:00
|
|
|
>
|
|
|
|
<div class="ui button branch-dropdown-button">
|
|
|
|
<span class="text-branch-name gt-ellipsis">{{if .Reference}}{{$.RefEndName}}{{else}}{{ctx.Locale.Tr "repo.issues.no_ref"}}{{end}}</span>
|
2021-11-27 21:13:13 -07:00
|
|
|
{{if .HasIssuesOrPullsWritePermission}}{{svg "octicon-triangle-down" 14 "dropdown icon"}}{{end}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
|
|
|
<div class="menu">
|
|
|
|
<div class="ui icon search input">
|
2023-06-14 10:40:15 -06:00
|
|
|
<i class="icon">{{svg "octicon-filter" 16}}</i>
|
2023-09-25 02:56:50 -06:00
|
|
|
<input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}...">
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
2024-05-02 04:45:23 -06:00
|
|
|
<div class="branch-tag-tab">
|
|
|
|
<a class="branch-tag-item reference column muted active" href="#" data-target="#branch-list">
|
|
|
|
{{svg "octicon-git-branch" 16 "tw-mr-1"}} {{ctx.Locale.Tr "repo.branches"}}
|
|
|
|
</a>
|
|
|
|
<a class="branch-tag-item reference column muted" href="#" data-target="#tag-list">
|
|
|
|
{{svg "octicon-tag" 16 "tw-mr-1"}} {{ctx.Locale.Tr "repo.tags"}}
|
|
|
|
</a>
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
2024-03-14 21:43:10 -06:00
|
|
|
<div class="branch-tag-divider"></div>
|
2024-05-02 04:45:23 -06:00
|
|
|
<div id="branch-list" class="scrolling menu reference-list-menu">
|
|
|
|
{{if or .Reference (not .Issue)}}
|
|
|
|
<div class="item text small" data-id="" data-name="{{ctx.Locale.Tr "repo.issues.no_ref"}}" data-id-selector="#ref_selector"><strong><a href="#">{{ctx.Locale.Tr "repo.clear_ref"}}</a></strong></div>
|
2021-04-10 21:46:37 -06:00
|
|
|
{{end}}
|
2020-09-08 10:29:51 -06:00
|
|
|
{{range .Branches}}
|
2024-04-16 02:52:45 -06:00
|
|
|
<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector" title="{{.}}">{{.}}</div>
|
2024-03-14 21:43:10 -06:00
|
|
|
{{else}}
|
|
|
|
<div class="item">{{ctx.Locale.Tr "no_results_found"}}</div>
|
2020-09-08 10:29:51 -06:00
|
|
|
{{end}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
2024-05-02 04:45:23 -06:00
|
|
|
<div id="tag-list" class="scrolling menu reference-list-menu tw-hidden">
|
|
|
|
{{if or .Reference (not .Issue)}}
|
|
|
|
<div class="item text small" data-id="" data-name="{{ctx.Locale.Tr "repo.issues.no_ref"}}" data-id-selector="#ref_selector"><strong><a href="#">{{ctx.Locale.Tr "repo.clear_ref"}}</a></strong></div>
|
2021-04-10 21:46:37 -06:00
|
|
|
{{end}}
|
2020-09-08 10:29:51 -06:00
|
|
|
{{range .Tags}}
|
|
|
|
<div class="item" data-id="refs/tags/{{.}}" data-name="tags/{{.}}" data-id-selector="#ref_selector">{{.}}</div>
|
2024-03-14 21:43:10 -06:00
|
|
|
{{else}}
|
|
|
|
<div class="item">{{ctx.Locale.Tr "no_results_found"}}</div>
|
2020-09-08 10:29:51 -06:00
|
|
|
{{end}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-06-29 06:24:22 -06:00
|
|
|
<div class="divider"></div>
|
2020-02-11 10:02:41 -07:00
|
|
|
{{end}}
|