Subversion Repositories SmartDukaan

Rev

Rev 26496 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26493 tejbeer 1
 <style>
2
 .h5m{
3
  background: #f3f3f3;
4
  margin: 0px;
5
  padding: 10px;
6
}
7
 
8
table, th, td {
9
  border: 1px solid black;
10
  border-collapse: collapse;
11
}
12
 
13
 </style>
14
 
15
 
16
 
17
 <section class="wrapper">
18
	<div class="row">
19
		<div class="col-lg-12">
20
			<h3 class="page-header"><i class="icon_document_alt"></i>PRODUCT DETAIL</h3>
21
			<ol class="breadcrumb">
22
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
23
				<li><i class="icon_document_alt"></i>Product Detail</li>						  	
24
			</ol>
25
		</div>
26
	</div>
27
 
28
 
29
 
30
<div class="row">
31
  <div class="col-lg-6">		    		
32
   <h4 class="h4m">Detailed Specification</h4>
33
	 #foreach($x in $cps.get(0).getDetailedSpecs())
34
	   <div style="border:1px solid #f3f3f3;margin-bottom:15px;">
35
	   <h5 class="h5m" data-title="$x.getTitle()"><b>$x.getTitle()</b></h5>
36
        #foreach($xx in $x.getSpecs())   
37
	         <table style="width:100%">
38
	          <tr>
39
	          <td style="width:35%;padding:6px;line-height:15px" data-name="$xx.getName()">$xx.getName()</td>
40
	          <td>
41
			    #foreach($xxx in $xx.getValues())  
42
			    <span>$xxx</span>
43
		         #end
44
              </td>
45
              </tr>
46
            </table>
47
         #end
48
      </div>
49
    #end
50
  </div>
51
 </div>
52
 
53
 
54
 </section>