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.

openclose.tmpl 486B

12345678910
  1. <div class="ui compact tiny menu">
  2. <a class="{{if not .IsShowClosed}}active {{end}}item" href="{{$.Link}}?workflow={{.CurWorkflow}}&state=open">
  3. {{svg "octicon-issue-opened" 16 "mr-3"}}
  4. {{.locale.Tr "actions.runs.open_tab" $.NumOpenActionRuns}}
  5. </a>
  6. <a class="{{if .IsShowClosed}}active {{end}}item" href="{{$.Link}}?workflow={{.CurWorkflow}}&state=closed">
  7. {{svg "octicon-issue-closed" 16 "mr-3"}}
  8. {{.locale.Tr "actions.runs.closed_tab" $.NumClosedActionRuns}}
  9. </a>
  10. </div>