mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
|
h3 Repositories
|
||
|
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") Create Repository
|
||
|
|
||
|
table.table
|
||
|
thead: tr
|
||
|
th Name
|
||
|
th Git URL
|
||
|
th SSH Key
|
||
|
th
|
||
|
tbody: tr(ng-repeat="repo in repositories")
|
||
|
td {{ repo.name }}
|
||
|
td {{ repo.git_url }}
|
||
|
td {{ repo.ssh_key_id }}
|
||
|
td: button.btn.btn-danger.btn-xs.pull-right(ng-click="remove(repo)") delete
|