mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
ea0245b550
- Complete more UI work - Show events on dashboard & project dashboard - Show list of tasks
18 lines
536 B
Plaintext
18 lines
536 B
Plaintext
h3 Task Templates
|
|
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") New Template
|
|
|
|
table.table
|
|
thead: tr
|
|
th Playbook
|
|
th SSH Key
|
|
th Inventory
|
|
th Environment
|
|
th Repository
|
|
th
|
|
tbody: tr(ng-repeat="tpl in templates")
|
|
td {{ tpl.playbook }}
|
|
td {{ sshKeysAssoc[tpl.ssh_key_id].name }}
|
|
td {{ inventoryAssoc[tpl.inventory_id].name }}
|
|
td {{ environmentAssoc[tpl.environment_id].name }}
|
|
td {{ reposAssoc[tpl.repository_id].name }}
|
|
td: button.btn.btn-danger.btn-xs.pull-right(ng-click="remove(tpl)") remove |