This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/static/directives/credentials.html
2015-04-29 19:50:13 -04:00

12 lines
330 B
HTML

<div ng-switch on="trigger.service">
<!-- Message -->
<div ng-include="triggerTemplate" ng-if="triggerTemplate"></div>
<!-- Credentials -->
<div ng-repeat="credential in trigger.config.credentials">
<p>
{{ credential.name }}:
<div class="copy-box" value="credential.value"></div>
</p>
</div>
</div>