java/nekurak.net-web/web/WEB-INF/tags/nekurak/fotkyPodniku.tag
author František Kučera <franta-hg@frantovo.cz>
Sun Jun 20 14:46:47 2010 +0200 (2010-06-20)
changeset 145 0efefbf5f8b6
parent 68 df5aedafb826
child 153 c84a3e3c8a46
permissions -rw-r--r--
Formátování kódu, důsledné používání tabulátorů, drobné úpravy, StringBuilder
franta-hg@58
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@58
     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:nkfn="/WEB-INF/nekurakFunkce"
franta-hg@145
     7
		  version="2.0">
franta-hg@58
     8
franta-hg@145
     9
	<jsp:directive.attribute name="podnik" type="cz.frantovo.nekurak.dto.Podnik" required="true"/>
franta-hg@58
    10
franta-hg@145
    11
	<div id="fotkyPodniku${podnik.id}">
franta-hg@145
    12
		<c:forEach var="fotka" items="${podnik.fotky}">
franta-hg@145
    13
			<p>
franta-hg@145
    14
				<a href="${nkfn:fotka(fotka.id, false)}">
franta-hg@145
    15
					<img src="${nkfn:fotka(fotka.id, true)}" alt="fotka" title="${fn:escapeXml(fotka.popis)}"/>
franta-hg@145
    16
				</a>
franta-hg@145
    17
			</p>
franta-hg@145
    18
		</c:forEach>
franta-hg@145
    19
		<p><img src="grafika/fotkaPodnikuZadne.png" alt="žádné další fotografie"/></p>
franta-hg@145
    20
	</div>
franta-hg@58
    21
franta-hg@145
    22
	<c:if test="${nkfn:maFotky(podnik)}">
franta-hg@145
    23
		<script type="text/javascript">
franta-hg@145
    24
		fotkyPodniku.aktivuj(${podnik.id});
franta-hg@145
    25
		</script>
franta-hg@145
    26
	</c:if>
franta-hg@58
    27
</jsp:root>