travis-web/app/templates/components/hooks-list-item.hbs
2015-07-14 17:57:08 +02:00

28 lines
970 B
Handlebars

<div class="profile-hooks profile-switch">
{{hook-switch hook=hook onToggleError="handleToggleError" onToggle="resetErrors"}}
{{#if hook.isSaving}}
{{loading-indicator}}
{{else}}
{{#link-to "settings" hook.ownerName hook.name class="profile-settings" title="Repository settings"}}<span class="icon icon--cog"></span>{{/link-to}}
{{/if}}
</div>
<a href={{hook.urlGithub}} rel="nofollow" class="profile-repo">
{{hook.slug}}
<span>{{hook.description}}</span></a>
{{#if showError}}
<div class="hooks-error">
<p>
An error happened when we tried to alter settings on GitHub.
{{#if githubOrgsOauthAccessSettingsUrl}}
It may be caused by API restrictions, please
<a href={{githubOrgsOauthAccessSettingsUrl}}
title="Orgs Oauth Access Settings on GitHub">
review and add
</a> your authorized Orgs.
{{/if}}
<a class="close" {{action "close" target=view}}></a>
</p>
</div>
{{/if}}