travis-web/app/templates/components/build-repo-actions.hbs
Lisa P 1ba9548ad0 first iteration build header styles
build header styles 2nd iteration

make job header use component too

cleanup templates and markup for repo page

styles for the repo header

rewrite styles for repo header, cleanup tabs
2015-12-02 16:11:14 +01:00

20 lines
448 B
Handlebars

{{#if canCancel}}
{{#if cancelling}}
{{loading-indicator height=true}}
{{else}}
<a href="#" {{action "cancel"}} class="button-circle-cancel" title="Cancel Build">
Cancel build
</a>
{{/if}}
{{/if}}
{{#if canRestart}}
{{#if restarting}}
{{loading-indicator height=true}}
{{else}}
<a href="#" {{action "restart"}} class="button-circle-trigger" title="Restart Build">
Trigger build
</a>
{{/if}}
{{/if}}