mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 00:31:03 +01:00
16 lines
439 B
Plaintext
16 lines
439 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: .btn-group.pull-right
|
|
button.btn.btn-default.btn-xs(ng-click="update(repo)") update
|
|
button.btn.btn-danger.btn-xs(ng-click="remove(repo)") delete |