Semaphore/public/html/projects/repositories/list.pug
Matej Kramny 80538908a8 update contributing.md
- fix ./make.sh watch
- rename .jade -> .pug
2017-02-22 03:51:23 -08:00

12 lines
408 B
Plaintext

h3 Repositories
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") Create Repository
table.table.table-hover
thead: tr
th Name
th Git URL
th SSH Key
tbody: tr(ng-repeat="repo in repositories" ng-class="{ danger: repo.removed }" ng-click="update(repo)" style="cursor: pointer;")
td {{ repo.name }}
td {{ repo.git_url }}
td(title="Key ID: {{ repo.ssh_key_id }}") {{ repo.ssh_key.name }}