All pastes #2068583 Raw Edit

Anonymous

public text v1 · immutable
#2068583 ·published 2011-05-24 17:52 UTC
rendered paste body
					<center>

							<table cellspacing="0" cellpadding="0">
								<form method="get" id="form-{$i.id}">
									<input type="hidden" name="action" value="takeproduct" />
									<input type="hidden" name="orderid" value="{$i.id}" />
									<tr>
										<td class="tbl-heading">Produkt navn</td>
										<td class="tbl-heading">Brand</td>
										<td class="tbl-heading">Farve</td>
										<td class="tbl-heading">Størrelse</td>
										<td class="tbl-heading">Pris</td>
										<td class="tbl-heading">Antal</td>
										<td class="tbl-heading">Total</td>
										<td class="tbl-heading" width="60"> </td>
									</tr>
	{foreach $i.products as $ip}
									<tr>
										<td>{$ip.product_title}</td>
										<td>{$ip.brand_name}</td>
										<td>{$ip.color}</td>
										<td>{$ip.size}</td>
										<td>€{$ip.nowprice}</td>
										<td>{$ip.quantity}</td>
										<td>€{$ip.quantity * $ip.nowprice}</td>
										<td class="blog-action">
											<input type="checkbox" name="prod[{$ip.id}]" value="true">Vælg</input>
										</td>
									</tr>
	{/foreach}
									<tr>
										<td colspan="8">
											<input type="submit" id="all-{$i.id}" class="takeall" value="Tag alle" />
											<input type="submit" value="Tag valgte" />
										</td>
									</tr>
								</form>
							</table>
						</center>