java/nekurak.net-web/web/WEB-INF/casti/detail.jsp
author František Kučera <franta-hg@frantovo.cz>
Sun Jan 09 16:27:44 2011 +0100 (2011-01-09)
changeset 158 e1ac3efcd140
parent 145 0efefbf5f8b6
child 179 2ed9f3231a28
permissions -rw-r--r--
vylepšen detail podniku, modularizace, značky, css
franta-hg@40
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@40
     2
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
franta-hg@145
     3
		  xmlns:c="http://java.sun.com/jsp/jstl/core"
franta-hg@145
     4
		  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
franta-hg@145
     5
		  xmlns:fn="http://java.sun.com/jsp/jstl/functions"
franta-hg@145
     6
		  xmlns:nk="urn:jsptagdir:/WEB-INF/tags/nekurak"
franta-hg@145
     7
		  version="2.0">
franta-hg@40
     8
franta-hg@145
     9
	<jsp:useBean id="detail" class="cz.frantovo.nekurak.web.Detail" scope="request"/>
franta-hg@145
    10
	<jsp:setProperty name="detail" property="id" value="${param.podnik}"/>
franta-hg@100
    11
franta-hg@145
    12
	<nk:stranka titulek="${fn:escapeXml(detail.podnik.nazev)}">
franta-hg@145
    13
		<h1><c:out value="${detail.podnik.nazev}" /></h1>
franta-hg@158
    14
		<nk:podnikZahlavi podnik="${detail.podnik}" detailPodniku="true"/>
franta-hg@158
    15
		<nk:podnikDetail detail="${detail}"/>
franta-hg@158
    16
		<nk:podnikKomentare podnik="${detail.podnik}"/>
franta-hg@145
    17
	</nk:stranka>
franta-hg@40
    18
franta-hg@40
    19
</jsp:root>