d662fc01b5f92d214c039e447b4021eeb023e3cd
[portal/sdk.git] /
1 <div>
2         <div class="b2b-modal-header ng-scope in">
3                 <h1 class="heading-medium" id="SelectRole">Select Role Functions</h1>
4
5         </div>
6
7         <div class="b2b-modal-body ng-scope ng-isolate-scope in" tabindex="0"   aria-label="Modal header text content" role="region">
8                 <table class="striped">
9                         <thead>
10                                 <tr>
11                                         <th></th>
12                                         <th>Role Function</th>
13                                 </tr>
14                         </thead>
15                         <tbody type="body"ng-repeat="roleFunction in msg.availableRoleFunctions">
16                                 <tr>
17                                         <td>
18                                                 <label class="btn-switch-label" tabindex="0" role="option"> 
19                                                         <input  type="checkbox" b2b-switches ng-model="roleFunction.selected" ng-click="activateRoleConfirmPopUp(roleFunction.selected,roleFunction);" size-class="modal-small modal-alert">
20                                                 </label>
21                                         </td>
22                                         <td>{{roleFunction.name}}</td>
23                                 </tr>
24                         </tbody>
25                 </table>
26         </div>
27
28         <div class="b2b-modal-footer ng-scope ng-isolate-scope in">
29                 <div class="cta-button-group in">
30                         <button style="float: right; margin-right: 20px;"
31                                 class="btn btn-alt btn-small"
32                                 ng-click="$dismiss('cancel')">Close</button>
33                 </div>
34                 <br />
35         </div>
36 </div>