Sha256: feaae61cd353c6fd04b0c90741f82e3e3ab09574488d101211bf3311d4084d05
Contents?: true
Size: 1.3 KB
Versions: 13
Compression:
Stored size: 1.3 KB
Contents
<div class="my-profile-info-text"> <h2 class="h4"> <i class="fas fa-credit-card icon-full-blue"></i> Histórico de facturación </h2> <br/> <div class="row"> <div class="col-md-12"> <div class="alert alert-warning" ng-show="ssCtrl.subscriptions.length == 0"> <strong>Información: </strong> Aún no tienes facturas para mostrar. </div> <table class="table" ng-show="ssCtrl.subscriptions.length > 0"> <tr> <th> Orden Id </th> <th class="text-center"> Estado </th> <th class="text-right"> Precio </th> <th class="text-center"> Moneda </th> <th class="text-center"> Fecha de cobro </th> </tr> <tr ng-repeat="sub in ssCtrl.subscriptions"> <td> {{sub.reference_code}} </td> <td class="text-center"> {{sub.response_message_pol}} </td> <td class="text-right"> {{sub.amount | myCurrency}} </td> <td class="text-center"> {{sub.currency}} </td> <td class="text-center"> {{sub.created_at}} </td> </tr> </table> </div> </div> </div>
Version data entries
13 entries across 13 versions & 1 rubygems