java/HrisniciSpameri/web/index.jsp
author František Kučera <franta-hg@frantovo.cz>
Wed Feb 11 19:36:28 2009 +0100 (2009-02-11)
changeset 4 e3e2a3a4c36a
parent 0 d77702227a71
child 7 29bb67aa99fd
permissions -rw-r--r--
Zobrazování, zatím vycpávkového, denního souhrnu.
     1 <%@page contentType="text/html" pageEncoding="UTF-8"%>
     2 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
     3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
     4 "http://www.w3.org/TR/html4/loose.dtd">
     5 
     6 <html>
     7     <head>
     8         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     9         <link href="styl.css" type="text/css" rel="StyleSheet"/>
    10         <title>Hříšníci spameři</title>
    11     </head>
    12     <body>
    13         <h1>Hříšníci spameři</h1>
    14 
    15 
    16         <c:choose>
    17             <c:when test="${param.s == 'ucitele'}">
    18                 <jsp:include page="souhrn.jspx"/>
    19             </c:when>
    20             <c:when test="${param.s == 'komise'}">
    21                 <jsp:include page="souhrn.jspx"/>
    22             </c:when>
    23             <c:otherwise>
    24                 <jsp:include page="souhrn.jspx"/>
    25             </c:otherwise>
    26         </c:choose>
    27     </body>
    28 </html>