Subversion Repositories SmartDukaan

Rev

Rev 28085 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28085 Rev 33966
Line 36... Line 36...
36
							<th>Name</th>
36
							<th>Name</th>
37
							<th>Qty</th>
37
							<th>Qty</th>
38
						</tr>
38
						</tr>
39
					</thead>
39
					</thead>
40
 
40
 
41
					#foreach($request in $items )
41
							#foreach($item in $items )
42
					<tr>
42
					<tr>
43
						<td><input type="checkbox" class="chcktbl"
43
						<td><input type="checkbox" class="chcktbl"
44
							name="itemColorCheck" /></td>
44
							name="itemColorCheck" /></td>
45
						<td>$request.getId()</td>
45
						<td>$item.getId()</td>
46
						<td>$request.getItemDescription()</td>
46
						<td>$item.getItemDescription()</td>
47
						<td><input type="number" min="0" max="40" id="quantity"
47
						<td><input type="number" min="0" max="40" id="quantity"
48
							value="" /></td>
48
							value="" /></td>
49
 
49
 
50
 
50
 
51
					</tr>
51
					</tr>