code.gitea.io/gitea@v1.22.3/templates/repo/star_unstar.tmpl (about)

     1  <form hx-boost="true" hx-target="this" method="post" action="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}unstar{{else}}star{{end}}">
     2  	<div class="ui labeled button" {{if not $.IsSigned}}data-tooltip-content="{{ctx.Locale.Tr "repo.star_guest_user"}}"{{end}}>
     3  		{{$buttonText := ctx.Locale.Tr "repo.star"}}
     4  		{{if $.IsStaringRepo}}{{$buttonText = ctx.Locale.Tr "repo.unstar"}}{{end}}
     5  		<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}} aria-label="{{$buttonText}}">
     6  			{{if $.IsStaringRepo}}{{svg "octicon-star-fill"}}{{else}}{{svg "octicon-star"}}{{end}}
     7  			<span aria-hidden="true">{{$buttonText}}</span>
     8  		</button>
     9  		<a hx-boost="false" class="ui basic label" href="{{$.RepoLink}}/stars">
    10  			{{CountFmt .Repository.NumStars}}
    11  		</a>
    12  	</div>
    13  </form>