123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <div class="grouplist simpleList multitenancy" id="memberList">
- <div class="member-pane-header">
- {{? it.writable}}
- <span id="addMember" class="multitenant-member-pane-addBtn" title="{{=it.strings.addMember}}" aria-label="{{=it.strings.addMember}}"tabindex="0" role="link">
- <svg class="svgIcon bi-admin-add-member-svgIcon">
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-add"></use>
- </svg>
- </span>
- <span class="multitenant-member-addBtn-label">{{=it.strings.tenants}}</span>
- {{?}}
- </div>
- {{? it.members.length > 0 }}
- <div class="group">
- <div class="group-content">
- <table class="groupList-table" role="grid" width="100%" >
- <thead style="font-size: 0px;">
- <tr role="row" style="height: 0px;" >
- <th scope="col" role="columnheader" >{{=it.strings.tableheader.type}}</th>
- <th scope="col" role="columnheader" >{{=it.strings.tableheader.name}}</th>
- <th scope="col" role="columnheader" >{{=it.strings.tableheader.action}}</th>
- </tr>
- </thead>
- <tbody>
- {{~it.members :item:index}}
- <tr id="{{=item.tenantID}}" data-type="{{=item.type}}" class="list-item" role="row">
- <td tabindex="-1" role="gridcell" width="5%">
- <div class="adm-item-title" role="img" title="{{=it.strings.tenants}}">
- <svg role="presentation" class="svgIcon bi-admin-list-svgIcon">
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#{{=item.svgIcon}}"></use>
- </svg>
- </div>
- </td>
- <td tabindex="-1" width="90%" role="gridcell" >
- <div class="groupListFocusable">
- <div style="overflow: hidden; max-width: 300px;" class="text-title">{{=_.escape(item.defaultName)}}</div>
- </div>
- </td>
- <td tabindex="-1" role="gridcell" width="5%" aria-label="{{=it.strings.removeMemberButton}}">
- {{? it.writable}}
- <div class="groupListFocusable admin-remove-member-svgIcon" role="link" title="{{=it.strings.removeMember}}">
- <svg class="svgIcon bi-admin-list-svgIcon" role="presentation">
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#common-remove-delete"></use>
- </svg>
- </div>
- {{?}}
- </td>
- </tr>
- {{~}}
- </tbody>
- </table>
- </div>
- </div>
- {{??}}
- <div class="member-pane-empty">
- <div class="emptyTableImage wft_bee"></div>
- <div class="emptyTableText">{{=it.noMemberText}}</div>
- </div>
- {{?}}
- </div>
|