UNPKG

unserver-unify

Version:

69 lines (67 loc) 2.11 kB
<div class="headline" id="livecourse" ng-if=" $ctrl.isAvailable" style="margin-bottom: 10px;"> <h4 translate=""> Sessions </h4> </div> <table class="table table-striped table-hover tbl_aln white-bg" ng-if=" $ctrl.isAvailable" st-pipe="$ctrl.getSessionList" st-table="$ctrl.resourceItems"> <tr class="info"> <th class="sortable" st-sort="name"> {{ 'Name' | translate }} </th> <th class="sortable" st-sort="teacher" translate=""> Teacher </th> <th class="sortable" st-sort="classId" translate=""> Class </th> <th class="sortable" st-sort="start"> {{ 'Start' | translate }} </th> <th class="sortable" st-sort="end"> {{ 'Duration' | translate }} </th> <!-- <th class="sortable" st-sort="counter" translate=""> {{ 'Students' | translate }} </th> --> <th class="sortable" st-sort="address"> {{ 'Venue' | translate }} </th> </tr> <tr ng-repeat="item in $ctrl.resourceItems"> <td style="width:10%"> {{item.name}} </td> <td style="width:10%"> {{item.teacher}} </td> <td style="width:8%" translate=""> {{item.class.name || 'all'}} </td> <td style="width:15%"> {{item.start | date: 'yyyy-MM-dd HH:mm'}} </td> <td style="width:8%"> {{item.len}} <span ng-if="item.len" translate=""> Hrs </span> </td> <!-- <td style="width:8%"> {{item.counter}} </td> --> <td style="width:20%"> <span ng-if="!$ctrl.buildingflag "> {{item.address}} </span> <span ng-if="$ctrl.buildingflag "> {{item.buildingName}}-{{item.roomName}} </span> </td> </tr> <tr> <td class="per_page" colspan="9"> <span class="text-center" st-items-by-page="$ctrl.pageitemcount" st-pagination="" st-template="components/content/tablePagination.html"> </span> </td> </tr> </table>