src/main/webapp/WEB-INF/jsp/user-form.jsp

Mon, 30 Oct 2023 14:44:36 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 30 Oct 2023 14:44:36 +0100
changeset 292
703591e739f4
parent 209
c9c6abf167c7
permissions
-rw-r--r--

add possibility to show issues w/o version or component - fixes #335

universe@51 1 <%--
universe@51 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@51 3
universe@180 4 Copyright 2021 Mike Becker. All rights reserved.
universe@51 5
universe@51 6 Redistribution and use in source and binary forms, with or without
universe@51 7 modification, are permitted provided that the following conditions are met:
universe@51 8
universe@51 9 1. Redistributions of source code must retain the above copyright
universe@51 10 notice, this list of conditions and the following disclaimer.
universe@51 11
universe@51 12 2. Redistributions in binary form must reproduce the above copyright
universe@51 13 notice, this list of conditions and the following disclaimer in the
universe@51 14 documentation and/or other materials provided with the distribution.
universe@51 15
universe@51 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@51 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@51 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@51 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@51 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@51 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@51 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@51 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@51 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@51 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@51 26 --%>
universe@51 27 <%@page pageEncoding="UTF-8" %>
universe@51 28 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@51 29 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@51 30
universe@184 31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.UserEditView" scope="request"/>
universe@86 32 <c:set var="user" scope="page" value="${viewmodel.user}" />
universe@51 33
universe@184 34 <form action="./users/-/commit" method="post">
universe@69 35 <table class="formtable">
universe@51 36 <colgroup>
universe@51 37 <col>
universe@69 38 <col style="width: 50ch">
universe@51 39 </colgroup>
universe@51 40 <tbody>
universe@209 41 <c:if test="${not empty viewmodel.errorMessages}">
universe@209 42 <tr>
universe@209 43 <td colspan="2"><%@include file="../jspf/error-messages.jspf" %></td>
universe@209 44 </tr>
universe@209 45 </c:if>
universe@51 46 <tr>
universe@82 47 <th><fmt:message key="username"/></th>
universe@209 48 <td><input name="username" type="text" maxlength="200" required value="<c:out value="${user.username}"/>"
universe@72 49 <c:if test="${user.id ge 0}">readonly</c:if> /></td>
universe@51 50 </tr>
universe@51 51 <tr>
universe@181 52 <th><fmt:message key="user.givenname"/></th>
universe@209 53 <td><input name="givenname" type="text" maxlength="200" value="<c:out value="${user.givenname}"/>" /></td>
universe@51 54 </tr>
universe@51 55 <tr>
universe@181 56 <th><fmt:message key="user.lastname"/></th>
universe@209 57 <td><input name="lastname" type="text" maxlength="200" value="<c:out value="${user.lastname}"/>" /></td>
universe@51 58 </tr>
universe@51 59 <tr>
universe@181 60 <th><fmt:message key="user.mail"/></th>
universe@209 61 <td><input name="mail" type="email" maxlength="200" value="<c:out value="${user.mail}"/>" /></td>
universe@51 62 </tr>
universe@51 63 </tbody>
universe@51 64 <tfoot>
universe@51 65 <tr>
universe@51 66 <td colspan="2">
universe@72 67 <input type="hidden" name="userid" value="${user.id}"/>
universe@184 68 <a href="./users/" class="button">
universe@180 69 <fmt:message key="button.cancel"/>
universe@78 70 </a>
universe@180 71 <button type="submit"><fmt:message key="button.okay"/></button>
universe@51 72 </td>
universe@51 73 </tr>
universe@51 74 </tfoot>
universe@51 75 </table>
universe@51 76 </form>

mercurial