java/nekurak.net-web/web/index.jsp
changeset 26 fc3e84d87e01
parent 23 f76fc9f3cb7c
child 30 705871ca12e9
     1.1 --- a/java/nekurak.net-web/web/index.jsp	Wed Jan 27 05:21:57 2010 +0100
     1.2 +++ b/java/nekurak.net-web/web/index.jsp	Thu Feb 11 03:13:57 2010 +0100
     1.3 @@ -10,6 +10,7 @@
     1.4      <html xmlns="http://www.w3.org/1999/xhtml">
     1.5  	<head>
     1.6  	    <title>Nekuřák.net</title>
     1.7 +	    <link href="styl.css" type="text/css" rel="StyleSheet"/>
     1.8  	</head>
     1.9  	<body>
    1.10  	    <h1>Nekuřák.net</h1>
    1.11 @@ -25,15 +26,25 @@
    1.12  	    <c:choose>
    1.13  		<!-- if -->
    1.14  		<c:when test="${param.akce == 'seznam'}">
    1.15 -		    <p>Vypíšeme seznam hospod.</p>
    1.16 +		    <p>Vypíšeme seznam podniků:</p>
    1.17  		    <!-- Vytvoříme si instanci JavaBeany -->
    1.18  		    <jsp:useBean id="podnikyWeb" class="cz.frantovo.nekurak.web.PodnikyWeb" scope="request"/>
    1.19 -		    <ul>
    1.20 -			<c:forEach var="p" items="${podnikyWeb.podniky}">
    1.21 -			    <!-- vypíšeme název podniku (měli bychom escapovat) -->
    1.22 -			    <li>${p.nazev}</li>
    1.23 -			</c:forEach>
    1.24 -		    </ul>
    1.25 +		    <table>
    1.26 +			<thead>
    1.27 +			    <tr>
    1.28 +				<td>Číslo</td>
    1.29 +				<td>Název</td>
    1.30 +			    </tr>
    1.31 +			</thead>
    1.32 +			<tbody>
    1.33 +			    <c:forEach var="p" items="${podnikyWeb.podniky}">
    1.34 +				<tr>
    1.35 +				    <td><c:out value="${p.id}"/></td>
    1.36 +				    <td><c:out value="${p.nazev}"/></td>
    1.37 +				</tr>
    1.38 +			    </c:forEach>
    1.39 +			</tbody>
    1.40 +		    </table>
    1.41  		</c:when>
    1.42  		<!-- else if -->
    1.43  		<c:when test="${param.akce == 'podrobnosti'}">