mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	We have to define this one in helpers.css because tailwind only generates a single class but certain things rely on this being double-class. Command ran: ```sh perl -p -i -e 's#gt-hidden#tw-hidden#g' web_src/js/**/* templates/**/* models/**/* web_src/css/**/* --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> (cherry picked from commit ec3d467f15a683b305ac165c3eba6683628dcb25) Conflicts: templates/install.tmpl templates/repo/diff/conversation.tmpl templates/repo/issue/view_content/conversation.tmpl templates/repo/issue/view_content/sidebar.tmpl templates/repo/issue/view_title.tmpl resolved by prefering Forgejo version and applying the commands to all files
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
| {{if and (not .Issue.IsPull) (not .PageIsComparePull)}}
 | |
| <input id="ref_selector" name="ref" type="hidden" value="{{.Reference}}">
 | |
| <input id="editing_mode" name="edit_mode" type="hidden" value="{{(or .IsIssueWriter .HasIssuesOrPullsWritePermission)}}">
 | |
| <form method="post" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/ref" id="update_issueref_form">
 | |
| 	{{$.CsrfTokenHtml}}
 | |
| </form>
 | |
| {{/* TODO: share this branch selector dropdown with the same in repo page */}}
 | |
| <div class="ui {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}} floating filter select-branch dropdown" data-no-results="{{ctx.Locale.Tr "repo.pulls.no_results"}}">
 | |
| 	<div class="ui basic small button">
 | |
| 		<span class="text branch-name">{{if .Reference}}{{$.RefEndName}}{{else}}{{ctx.Locale.Tr "repo.issues.no_ref"}}{{end}}</span>
 | |
| 		{{if .HasIssuesOrPullsWritePermission}}{{svg "octicon-triangle-down" 14 "dropdown icon"}}{{end}}
 | |
| 	</div>
 | |
| 	<div class="menu">
 | |
| 		<div class="ui icon search input">
 | |
| 			<i class="icon">{{svg "octicon-filter" 16}}</i>
 | |
| 			<input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}...">
 | |
| 		</div>
 | |
| 		<div class="header">
 | |
| 			<div class="ui grid">
 | |
| 				<div class="two column row">
 | |
| 					<a class="reference column muted" href="#" data-target="#branch-list">
 | |
| 						<span class="text black">
 | |
| 							{{svg "octicon-git-branch" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.branches"}}
 | |
| 						</span>
 | |
| 					</a>
 | |
| 					<a class="reference column muted" href="#" data-target="#tag-list">
 | |
| 						<span class="text">
 | |
| 							{{svg "octicon-tag" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.tags"}}
 | |
| 						</span>
 | |
| 					</a>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<div class="branch-tag-divider"></div>
 | |
| 		<div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}">
 | |
| 			{{if .Reference}}
 | |
| 				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{ctx.Locale.Tr "repo.clear_ref"}}</a></strong></div>
 | |
| 			{{end}}
 | |
| 			{{range .Branches}}
 | |
| 				<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | |
| 			{{else}}
 | |
| 				<div class="item">{{ctx.Locale.Tr "repo.pulls.no_results"}}</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 		<div id="tag-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}} tw-hidden">
 | |
| 			{{if .Reference}}
 | |
| 				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{ctx.Locale.Tr "repo.clear_ref"}}</a></strong></div>
 | |
| 			{{end}}
 | |
| 			{{range .Tags}}
 | |
| 				<div class="item" data-id="refs/tags/{{.}}" data-name="tags/{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | |
| 			{{else}}
 | |
| 				<div class="item">{{ctx.Locale.Tr "repo.pulls.no_results"}}</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| <div class="divider"></div>
 | |
| {{end}}
 |