Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]<%@taglib uri="[URL unfurl="true"]http://java.sun.com/jsp/jstl/core"[/URL] prefix="c"%>[/blue]
[gray]<!-- ... -->[/gray]
<table>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
<th>Value</th>
</tr>
[blue]<c:set var="total" value="0"/>[/blue]
[blue]<c:forEach var="prod" items="[green]${sessionScope.cart}[/green]">[/blue]
[blue]<c:set var="total" value="[green]${total+prod.value.quantity*prod.value.price}[/green]"/>[/blue]
<tr>
<td>[green]${prod.value.name}[/green]</td>
<td>[green]${prod.value.quantity}[/green]</td>
<td>[green]${prod.value.price}[/green]</td>
<td>[green]${prod.value.quantity*prod.value.price}[/green]</td>
</tr>
[blue]</c:forEach>[/blue]
</table>
<table>
<tr>
<th>Total</th>
<td>[blue]<c:out value="[green]${total}[/green]"/>[/blue] $</td>
</tr>
<tr>
<th>Bonus</th>
<td>[green]${sessionScope.bonus}[/green] %</td>
</tr>
<tr>
<th>Total - bonus %</th>
<td>[green]${total*(1-sessionScope.bonus/100)}[/green] $</td>
</tr>
</table>