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}}">
|
2020-09-08 10:29:51 -06:00
|
|
|
<input id="editing_mode" name="edit_mode" type="hidden" value="{{(or .IsIssueWriter .HasIssuesOrPullsWritePermission)}}">
|
2023-06-14 12:17:58 -06:00
|
|
|
<form method="post" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/ref" id="update_issueref_form">
|
2020-09-08 10:29:51 -06:00
|
|
|
{{$.CsrfTokenHtml}}
|
|
|
|
</form>
|
|
|
|
|
2023-09-25 02:56:50 -06:00
|
|
|
<div class="ui {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}} floating filter select-branch dropdown" data-no-results="{{ctx.Locale.Tr "repo.pulls.no_results"}}">
|
2017-08-24 06:30:27 -06:00
|
|
|
<div class="ui basic small button">
|
2023-09-25 02:56:50 -06:00
|
|
|
<span class="text branch-name">{{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>
|
|
|
|
<div class="header">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="two column row">
|
|
|
|
<a class="reference column" href="#" data-target="#branch-list">
|
|
|
|
<span class="text black">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-git-branch" 16 "gt-mr-2"}}{{ctx.Locale.Tr "repo.branches"}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
<a class="reference column" href="#" data-target="#tag-list">
|
|
|
|
<span class="text">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-tag" 16 "gt-mr-2"}}{{ctx.Locale.Tr "repo.tags"}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-31 11:32:11 -07:00
|
|
|
<div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}">
|
2021-12-17 14:29:09 -07:00
|
|
|
{{if .Reference}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div class="item text small" data-id="" 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}}
|
|
|
|
<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector">{{.}}</div>
|
|
|
|
{{end}}
|
2017-08-24 06:30:27 -06:00
|
|
|
</div>
|
2023-02-18 21:06:14 -07:00
|
|
|
<div id="tag-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}} gt-hidden">
|
2021-12-17 14:29:09 -07:00
|
|
|
{{if .Reference}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div class="item text small" data-id="" 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>
|
|
|
|
{{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}}
|