1 <?xml version="1.0" encoding="UTF-8"?>
2 <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
3 xmlns:c="http://java.sun.com/jsp/jstl/core"
4 xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
5 xmlns:fn="http://java.sun.com/jsp/jstl/functions"
6 xmlns:nk="urn:jsptagdir:/WEB-INF/tags/nekurak"
9 <jsp:useBean id="podnik" class="cz.frantovo.nekurak.dto.Podnik" scope="request"/>
10 <jsp:useBean id="pridatPodnik" class="cz.frantovo.nekurak.web.PridatPodnik" scope="request"/>
12 <fmt:message key="pridatPodnik.nadpis" var="titulekStranky"/>
13 <nk:stranka titulek="${titulekStranky}">
15 <h1><c:out value="${titulekStranky}"/></h1>
18 <c:when test="${param.akcePridat == 'pridej'}">
19 <c:catch var="pridatPodnikChyba">
20 <jsp:setProperty name="podnik" property="*"/>
21 <jsp:setProperty name="pridatPodnik" property="podnik" value="${podnik}"/>
22 <c:set var="pridatPodnikOK" value="${pridatPodnik.pridano}"/>
25 <c:when test="${pridatPodnikChyba == null}">
26 <p><fmt:message key="pridatPodnik.bylPridan"/></p>
29 <p class="chybovaHlaska"><fmt:message key="pridatPodnik.nebylPridan"/></p>
34 <form method="post" action="${zc}?akce=pridatPodnik&amp;akcePridat=pridej">
36 <label><fmt:message key="dto.podnik.nazev"/>: <input type="text" name="nazev" maxlength="255"/></label><br/>
37 <label><fmt:message key="dto.podnik.popis"/>: <input type="text" name="popis" maxlength="255"/></label><br/>
38 <fmt:message key="dto.podnik.url.tip" var="urlTip"/>
39 <label title="${urlTip}"><fmt:message key="dto.podnik.url"/>: <input type="text" name="url" maxlength="255"/></label><br/>
40 <label><fmt:message key="dto.podnik.ulice"/>: <input type="text" name="ulice" maxlength="64"/></label><br/>
41 <fmt:message key="dto.podnik.cisloPopisne.tip" var="cisloPopisneTip"/>
42 <label title="${cisloPopisneTip}"><fmt:message key="dto.podnik.cisloPopisne"/>: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
43 <label><fmt:message key="dto.podnik.mesto"/>: <input type="text" name="mesto" maxlength="64"/></label><br/>
44 <button value="submit"><fmt:message key="pridatPodnik.tlacitko"/></button>