java/nekurak.net-web/web/WEB-INF/tags/nekurak/komentareVypis.tag
author František Kučera <franta-hg@frantovo.cz>
Mon, 07 Jun 2010 23:14:02 +0200
changeset 126 d47f6a75d20e
child 127 2b6107e510d8
permissions -rw-r--r--
Komentáře: kostra, značka
franta-hg@126
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@126
     2
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
franta-hg@126
     3
	  xmlns:c="http://java.sun.com/jsp/jstl/core"
franta-hg@126
     4
	  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
franta-hg@126
     5
	  xmlns:fn="http://java.sun.com/jsp/jstl/functions"
franta-hg@126
     6
	  xmlns:nkfn="/WEB-INF/nekurakFunkce"
franta-hg@126
     7
	  version="2.0">
franta-hg@126
     8
franta-hg@126
     9
    <jsp:directive.attribute name="podnik" type="cz.frantovo.nekurak.dto.Podnik" required="true"/>
franta-hg@126
    10
franta-hg@126
    11
    <div class="komentare">
franta-hg@126
    12
	<h3><fmt:message key="komentare.vypisNadpis"/></h3>
franta-hg@126
    13
	<c:choose>
franta-hg@126
    14
	    <c:when test="${prihlasenyUzivatel == null}">
franta-hg@126
    15
		<p>pro vkládání komentářů se prosím přihlašte</p>
franta-hg@126
    16
	    </c:when>
franta-hg@126
    17
	    <c:otherwise>
franta-hg@126
    18
		<p>Uživatel: <c:out value="${prihlasenyUzivatel}" /></p>
franta-hg@126
    19
	    </c:otherwise>
franta-hg@126
    20
	</c:choose>
franta-hg@126
    21
franta-hg@126
    22
franta-hg@126
    23
    </div>
franta-hg@126
    24
franta-hg@126
    25
</jsp:root>