2016-04-11 12:02:10 +02:00
|
|
|
h3 Task Templates
|
|
|
|
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") New Template
|
|
|
|
|
2016-06-17 22:16:46 +02:00
|
|
|
table.table.table-hover
|
2016-04-11 12:02:10 +02:00
|
|
|
thead: tr
|
2016-11-15 16:44:41 +01:00
|
|
|
th Alias
|
2016-04-11 12:02:10 +02:00
|
|
|
th Playbook
|
|
|
|
th SSH Key
|
|
|
|
th Inventory
|
|
|
|
th Environment
|
|
|
|
th Repository
|
2016-04-16 21:42:57 +02:00
|
|
|
th
|
2016-06-17 22:16:46 +02:00
|
|
|
tbody: tr(ng-repeat="tpl in templates" ng-click="update(tpl)" style="cursor: pointer;")
|
2016-11-15 16:44:41 +01:00
|
|
|
td {{ tpl.alias }}
|
2016-04-11 12:02:10 +02:00
|
|
|
td {{ tpl.playbook }}
|
|
|
|
td {{ sshKeysAssoc[tpl.ssh_key_id].name }}
|
|
|
|
td {{ inventoryAssoc[tpl.inventory_id].name }}
|
|
|
|
td {{ environmentAssoc[tpl.environment_id].name }}
|
2016-04-16 21:42:57 +02:00
|
|
|
td {{ reposAssoc[tpl.repository_id].name }}
|
2016-04-17 02:20:23 +02:00
|
|
|
td
|
2016-11-15 16:44:41 +01:00
|
|
|
button.btn.btn-success.btn-xs.pull-right(ng-click="run(tpl); $event.stopPropagation();") run
|