* optimize * CI.restart() Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: zeripath <art27@cantab.net>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{range $key, $value := .Reactions}}
 | 
						|
	<a class="ui label basic{{if $value.HasUser $.ctx.SignedUserID}} blue{{end}}{{if not $.ctx.IsSigned}} disabled{{end}} has-emoji" data-title="{{$value.GetFirstUsers}}{{if gt ($value.GetMoreUserCount) 0}} {{ $.ctx.i18n.Tr "repo.reactions_more" $value.GetMoreUserCount}}{{end}}" data-content="{{ $key }}" data-action-url="{{ $.ActionURL }}">
 | 
						|
		{{if eq $key "hooray"}}
 | 
						|
			:tada:
 | 
						|
		{{else if eq $key "laugh"}}
 | 
						|
			:laughing:
 | 
						|
		{{else}}
 | 
						|
			:{{$key}}:
 | 
						|
		{{end}}
 | 
						|
		{{len $value}}
 | 
						|
	</a>
 | 
						|
{{end}}
 | 
						|
{{if AllowedReactions}}
 | 
						|
	{{template "repo/issue/view_content/add_reaction" Dict "ctx" $.ctx "ActionURL" .ActionURL}}
 | 
						|
{{end}}
 |