Subversion Repositories SmartDukaan

Rev

Rev 26493 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26493 Rev 26498
Line 3... Line 3...
3
 .h5m{
3
 .h5m{
4
  background: #f3f3f3;
4
  background: #f3f3f3;
5
  margin: 0px;
5
  margin: 0px;
6
  padding: 10px;
6
  padding: 10px;
7
}
7
}
8
 
-
 
9
table, th, td {
-
 
10
  border: 1px solid black;
-
 
11
  border-collapse: collapse;
-
 
12
}
-
 
13
 
8
 
14
 </style>
9
 </style>
15
 
10
 
16
 
11
 
17
 <script type="text/javascript">
12
 <script type="text/javascript">
Line 66... Line 61...
66
	    		
61
	    		
67
	    		
62
	    		
68
   <h4 class="h4m">Detailed Specification</h4>
63
   <h4 class="h4m">Detailed Specification</h4>
69
	 #foreach($x in $cp.getDetailedSpecs())
64
	 #foreach($x in $cp.getDetailedSpecs())
70
	   <div style="border:1px solid #f3f3f3;margin-bottom:15px;">
65
	   <div style="border:1px solid #f3f3f3;margin-bottom:15px;">
-
 
66
	    <table style="width:100%" class="table table-bordered">
71
	   <h5 class="h5m">$x.getTitle()</h5>
67
	   <tr class="info"><th colspan="2">$x.getTitle()</th></tr>
72
        #foreach($xx in $x.getSpecs())   
68
        #foreach($xx in $x.getSpecs())   
73
	         <table style="width:100%">
-
 
74
	          <tr>
69
	          <tr>
75
	          <td style="width:35%;padding:6px;line-height:15px">$xx.getName()</td>
70
	          <th style="width:35%">$xx.getName()</th>
76
	          <td>
71
	          <td>
77
			    #foreach($xxx in $xx.getValues())  
72
			    #foreach($xxx in $xx.getValues())  
78
			    <span>$xxx</span>
73
			    <span>$xxx</span>
79
		         #end
74
		         #end
80
              </td>
75
              </td>
81
              </tr>
76
              </tr>
82
            </table>
-
 
83
         #end
77
         #end
-
 
78
         </table>
84
      </div>
79
      </div>
85
    #end
80
    #end
86
  </div>
81
  </div>
87
 </div>
82
 </div>
88
83