Subversion Repositories SmartDukaan

Rev

Rev 23629 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
.row{
        margin:0 auto;
}
.modal-content{
                background : white;
        }
        .modelHeaderCustom{
                font-size:14px;
                font-weight:bold;
        }
        .border-highlight{
                border : 3px solid red;
        }
        hr{
                background-color:#007aff;
                border:none;
                height:1px;
                background:#007aff;
        }
        .control-label {
                margin-top: 0;
        margin-bottom: 0;
        padding-top: 7px;
        font-weight:bold;
        font-size:14px;
        }
        .form-group{
                border-bottom: 1px solid #eff2f7;
        padding-bottom: 15px;
        margin-bottom: 15px;
        }
        .right{
                float:right;
        }
        .form-control{
                color:black;
        }

</style>

<section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>PROVIDER BALANCE</li>
                        </ol>
                </div>
        </div>
        
        <div class = "row" style="background:white;background-color:white;padding:10px;">
                <h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Balance Information</h4>
                <div class="row">
                        <div class="col-lg-12">
                        <table class="table table-striped table-advance table-hover">
                                <tbody>
                                        <tr>
                                                <th>Provider Balance From</th>
                                                <th>Provider Name</th>
                                                <th>Balance</th>
                                        </tr>
                                        #if(!$dailyRecharges.isEmpty())
                                                #foreach( $rechargeProviderBalanceMap in $rechargeProviderBalanceMaps )
                                                        <tr>
                                                                <td>$rechargeProviderBalanceMap.get('providerBalanceFrom')</td>
                                                                <td>$rechargeProviderBalanceMap.get('providerName')</td>
                                                                <td>$rechargeProviderBalanceMap.get('amount')</td>
                                                        </tr>
                                                #end
                                        #else
                                                <tr>
                                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                                </tr>
                                        #end
                                </tbody>
                        </table>
                </div>
                        
                </div>
        </div>
</section>