Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
26493 tejbeer 1
 <section class="wrapper">
2
	<div class="row">
3
		<div class="col-lg-12">
4
			<h3 class="page-header"><i class="icon_document_alt"></i>PRODUCT DETAIL</h3>
5
			<ol class="breadcrumb">
6
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
7
				<li><i class="icon_document_alt"></i>Product Detail</li>						  	
8
			</ol>
9
		</div>
10
	</div>
11
 
12
 
13
 
14
<div class="row">
15
  <div class="col-lg-6">		    		
16
   <h4 class="h4m">Detailed Specification</h4>
17
	 #foreach($x in $cps.get(0).getDetailedSpecs())
18
	   <div style="border:1px solid #f3f3f3;margin-bottom:15px;">
26496 amit.gupta 19
	    <table style="width:100%" class="table table-bordered">
26499 amit.gupta 20
	    #set( $colSize = $cps.size()+1 )
21
	   <tr class="info"><th colspan="$colSize">$x.getTitle()</th></tr>
26493 tejbeer 22
        #foreach($xx in $x.getSpecs())   
23
	          <tr>
26496 amit.gupta 24
	          <th style="width:35%">$xx.getName()</th>
25
	        #foreach($map in $entityList)   
26
	          <td><span>$map.get("$x.getTitle()$xx.getName()")</span></td>
27
	        #end
26493 tejbeer 28
              </tr>
29
         #end
26496 amit.gupta 30
         </table>
26493 tejbeer 31
      </div>
32
    #end
33
  </div>
34
 </div>
35
 
36
 
37
 </section>