Semaphore/public/html/projects/keys/list.jade

12 lines
270 B
Plaintext
Raw Normal View History

h3 Keys
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") Create Key
2016-04-04 15:44:34 +02:00
table.table
thead: tr
th.col-sm-2 Name
th.col-sm-2 Type
th.col-sm-8 Key
2016-04-04 15:44:34 +02:00
tbody: tr(ng-repeat="key in keys")
td {{ key.name }}
td: code {{ key.type }}
td: pre: code {{ key.key }}