You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

star_unstar.tmpl 817B

12345678910111213
  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 class="not-mobile" 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>