Remove compass4nfv weekly danube job
[releng.git] / utils / test / testapi / opnfv_testapi / ui / profile / profile.html
1 <h3>User profile</h3>
2 <div cg-busy="{promise:ctrl.authRequest,message:'Loading'}"></div>
3 <div>
4     <table class="table table-striped table-hover">
5         <tbody>
6             <tr> <td>User</td> <td>{{auth.currentUser.user}}</td> </tr>
7             <tr> <td>Fullname</td> <td>{{auth.currentUser.fullname}}</td> </tr>
8             <tr> <td>Email</td> <td>{{auth.currentUser.email}}</td> </tr>
9             <tr> <td>Groups</td>
10                  <td>
11                      <div ng-repeat="group in auth.currentUser.groups">
12                          {{group}}</br>
13                      </div>
14                  </td>
15             </tr>
16         </tbody>
17     </table>
18 </div>
19 <div ng-show="ctrl.pubkeys">
20     <div class="container-fluid">
21         <div class="row">
22             <div class="col-md-4">
23                 <h4>User Public Keys</h4>
24             </div>
25             <div class="col-md-2 pull-right">
26                 <button type="button" class="btn btn-default btn-sm" ng-click="ctrl.openImportPubKeyModal()">
27                     <span class="glyphicon glyphicon-plus"></span> Import Public Key
28                 </button>
29             </div>
30         </div>
31     </div>
32
33     <div>
34         <table class="table table-striped table-hover">
35             <tbody>
36                 <tr ng-repeat="pubKey in ctrl.pubkeys" ng-click="ctrl.openShowPubKeyModal(pubKey)">
37                     <td>{{pubKey.format}}</td>
38                     <td>{{pubKey.shortKey}}</td>
39                     <td>{{pubKey.comment}}</td>
40                 </tr>
41             </tbody>
42         </table>
43     </div>
44 </div>