Subversion Repositories SmartDukaan

Rev

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

 <style>
 .h5m{
  background: #f3f3f3;
  margin: 0px;
  padding: 10px;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
 
 </style>
 
 
 
 <section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>PRODUCT DETAIL</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>Product Detail</li>                                                        
                        </ol>
                </div>
        </div>
 


<div class="row">
  <div class="col-lg-6">                                
   <h4 class="h4m">Detailed Specification</h4>
         #foreach($x in $cps.get(0).getDetailedSpecs())
           <div style="border:1px solid #f3f3f3;margin-bottom:15px;">
           <h5 class="h5m" data-title="$x.getTitle()"><b>$x.getTitle()</b></h5>
        #foreach($xx in $x.getSpecs())   
                 <table style="width:100%">
                  <tr>
                  <td style="width:35%;padding:6px;line-height:15px" data-name="$xx.getName()">$xx.getName()</td>
                  <td>
                            #foreach($xxx in $xx.getValues())  
                            <span>$xxx</span>
                         #end
              </td>
              </tr>
            </table>
         #end
      </div>
    #end
  </div>
 </div>
 

 </section>