Subversion Repositories SmartDukaan

Rev

Rev 27474 | Rev 35064 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
.saleTable tr th{
    color:      #FFFFFF;
    padding-bottom:6px;
}

.saleTable tr td{
   
    padding-bottom:6px;
}
.blue-bg{
    box-shadow: 4px 4px 4px grey;
    background-image: linear-gradient(#57889c,  #B0C4DE);
   
}




</style>

                <table class="table table-striped saleTable" style="color:blue;" >
                        <thead>
                                         <tr>
                                                <th></th>
                                                 <th>Sales</th>
                                                 <th>MTD</th>
                                                 <th>Type</th>
                                        </tr>
                        </thead>
                                                            
                        <tbody>
                                        #set($start = 1)
                                        #set($end = 6)
                                    #set($range = [$start..$end])
                                    #foreach($i in $range)
                                                                
                                            <tr> 
                                                   <td><b>$monthSales.get($i).getMonth()</b></td>
                                                   <td>$monthSales.get($i).getMonthlySales()</td>
                                                   <td>$monthSales.get($i).getMtdSales()</td>
                                                   <td>$monthSales.get($i).getPartnerType()</td>
                                            </tr>
                                                        
                                        #end
                        </tbody>
                </table>