Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / ux / security / security-module / src / main / resources / security / src / security.tpl.html
1 <div id="security">
2    <h2>Users</h2>
3    <table class="table">
4      <thead>
5        <tr>
6          <th>UserID</th>
7          <th>Name</th>
8          <th>Description</th>
9          <th>Enabled</th>
10          <th>eMail</th>
11                      <th>Domain</th>
12          <th>Actions</th>
13        </tr>
14      </thead>
15      <tbody>
16        <tr ng-repeat="user in users">
17          <td>{{user.userid}}</td>
18                          <td>{{user.name}}</td>
19          <td>{{user.description}}</td>
20                          <td>{{user.enabled}}</td>
21                                 <td>{{user.email}}</td>
22                                 <td>{{user.domainid}}</td>
23                                 <td>
24           <button class="btn btn-sm btn-success" 
25                   ng-click="getCurrentUserById(user.userid)">Info</button></td>
26        </tr>
27      </tbody>
28    </table>
29 <h2>Roles</h2>
30 <table class="table">
31         <thead>
32                 <tr>
33                         <th>RoleID</th>
34                         <th>Name</th>
35                         <th>Description</th>
36                         <th>Domain</th>
37                         <!-- <th>Actions</th> -->
38                 </tr>
39         </thead>
40         <tbody>
41                 <tr ng-repeat="role in roles">
42                         <td>{{role.roleid}}</td>
43                         <td>{{role.name}}</td>
44                         <td>{{role.description}}</td>
45                         <td>{{role.domainid}}</td>
46                         <!-- <td><button class="btn btn-sm btn-success">Info</button></td> -->
47                 </tr>
48         </tbody>
49 </table>
50 </div>