40 lines
3.3 KiB
HTML
Executable File
40 lines
3.3 KiB
HTML
Executable File
<div >
|
|
<div class="container" style="background-color: rgb(248, 248, 248);
|
|
border-radius: 6px;padding: 22px;" ng-init="getPartMesgDetails(p)">
|
|
<div ng-if="getPartMesgDetailsLoading" class="text-center">
|
|
<h3>Fetching ...</h3>
|
|
</div>
|
|
<div ng-if="!getPartMesgDetailsLoading">
|
|
<div ng-if="resGroupSendData.length > 0">
|
|
<table class="table">
|
|
<thead style="background-color: cadetblue">
|
|
<th>Message Id</th>
|
|
<th>Mobile Number</th>
|
|
<th>Delivery Status</th>
|
|
<th>Delivery On</th>
|
|
</thead>
|
|
<tbody dir-paginate="s in resGroupSendData |orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:3:">
|
|
<th>{{s.MsgId}}</th>
|
|
<td>{{s.MobileNumber}}</td>
|
|
<td>{{s.DeliveredStatus}}</td>
|
|
<td>{{s.DeliveredOn}}</td>
|
|
</tbody>
|
|
<tfoot>
|
|
<dir-pagination-controls max-size="3" direction-links="true" boundary-links="true" pagination-id="{{p.MsgId}}">
|
|
</dir-pagination-controls>
|
|
</tfoot>
|
|
</table>
|
|
|
|
</div>
|
|
<div ng-if="resGroupSendData.length === 0">
|
|
<p style="color: red;" align="center"><strong><h4 class="text-center">No
|
|
Status Details Exist ... </h4></strong></p>
|
|
</div>
|
|
<div class="pull-right">
|
|
<button type="reset" class="btn btn-warning btn-sm" tabindex="20" ng-click="cancel()">
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |