
With this patch users can list their own test results. Change-Id: Ie2d944924f6ae966a13d0ca9908810c315ade5ab
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<h3>User profile</h3>
|
|
|
|
<div>
|
|
<table class="table table-striped table-hover">
|
|
<tbody>
|
|
<tr> <td>User name</td> <td>{{auth.currentUser.fullname}}</td> </tr>
|
|
<tr> <td>User OpenId</td> <td>{{auth.currentUser.openid}}</td> </tr>
|
|
<tr> <td>Email</td> <td>{{auth.currentUser.email}}</td> </tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<h4>User public keys</h4>
|
|
</div>
|
|
<div class="col-md-2 pull-right">
|
|
<button type="button" class="btn btn-default btn-sm" ng-click="openImportPubKeyModal()">
|
|
<span class="glyphicon glyphicon-plus"></span> Import public key
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<table class="table table-striped table-hover">
|
|
<tbody>
|
|
<tr ng-repeat="pubKey in pubkeys" ng-click="openShowPubKeyModal(pubKey)">
|
|
<td>{{pubKey.format}}</td>
|
|
<td>{{pubKey.shortKey}}</td>
|
|
<td>{{pubKey.comment}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|