Subversion Repositories SmartDukaan

Rev

Rev 26493 | Rev 26499 | 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">
20
	   <tr class="info"><th colspan="$cps.size()">$x.getTitle()</th></tr>
26493 tejbeer 21
        #foreach($xx in $x.getSpecs())   
22
	          <tr>
26496 amit.gupta 23
	          <th style="width:35%">$xx.getName()</th>
24
	        #foreach($map in $entityList)   
25
	          <td><span>$map.get("$x.getTitle()$xx.getName()")</span></td>
26
	        #end
26493 tejbeer 27
              </tr>
28
         #end
26496 amit.gupta 29
         </table>
26493 tejbeer 30
      </div>
31
    #end
32
  </div>
33
 </div>
34
 
35
 
36
 </section>