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

Mon, 01 Jun 2020 14:46:58 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 01 Jun 2020 14:46:58 +0200
changeset 86
0a658e53177c
parent 84
5407d4ea0611
child 99
a369fb1b3aa2
permissions
-rw-r--r--

improves issue overview and adds progress information

universe@51 1 <%--
universe@51 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@51 3
universe@51 4 Copyright 2018 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@86 31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.VersionEditView" scope="request" />
universe@86 32 <c:set var="version" scope="page" value="${viewmodel.version}"/>
universe@80 33
universe@78 34 <form action="./projects/versions/commit" method="post">
universe@51 35 <table class="formtable" style="width: 35ch">
universe@51 36 <colgroup>
universe@51 37 <col>
universe@51 38 <col style="width: 100%">
universe@51 39 </colgroup>
universe@51 40 <tbody>
universe@51 41 <tr>
universe@82 42 <th><fmt:message key="version.project"/></th>
universe@76 43 <td>
universe@86 44 <c:choose>
universe@86 45 <c:when test="${not empty version.project}">
universe@86 46 <c:out value="${version.project.name}" />
universe@86 47 <input type="hidden" name="pid" value="${version.project.id}" />
universe@86 48 </c:when>
universe@86 49 <c:otherwise>
universe@86 50 <select name="pid" required>
universe@86 51 <c:forEach var="project" items="${viewmodel.projects}">
universe@86 52 <option value="${project.id}">
universe@86 53 <c:out value="${project.name}" />
universe@86 54 </option>
universe@86 55 </c:forEach>
universe@86 56 </select>
universe@86 57 </c:otherwise>
universe@86 58 </c:choose>
universe@76 59 </td>
universe@76 60 </tr>
universe@76 61 <tr>
universe@82 62 <th><fmt:message key="version.name"/></th>
universe@75 63 <td><input name="name" type="text" maxlength="20" required value="<c:out value="${version.name}"/>" /></td>
universe@51 64 </tr>
universe@51 65 <tr>
universe@82 66 <th><fmt:message key="version.status"/></th>
universe@59 67 <td>
universe@59 68 <select name="status" required>
universe@86 69 <c:forEach var="elem" items="${viewmodel.versionStatus}">
universe@72 70 <option
universe@72 71 <c:if test="${elem eq version.status}">selected</c:if> value="${elem}"><fmt:message
universe@72 72 key="version.status.${elem}"/></option>
universe@59 73 </c:forEach>
universe@59 74 </select>
universe@59 75 </td>
universe@51 76 </tr>
universe@59 77 <tr title="<fmt:message key="tooltip.ordinal" />">
universe@82 78 <th><fmt:message key="version.ordinal"/></th>
universe@59 79 <td>
universe@72 80 <input name="ordinal" type="number" min="0" value="${version.ordinal}"/>
universe@59 81 </td>
universe@51 82 </tr>
universe@51 83 </tbody>
universe@51 84 <tfoot>
universe@51 85 <tr>
universe@51 86 <td colspan="2">
universe@72 87 <input type="hidden" name="id" value="${version.id}"/>
universe@76 88 <c:choose>
universe@86 89 <c:when test="${not empty version.project}">
universe@78 90 <c:set var="cancelUrl">./projects/view?pid=${version.project.id}</c:set>
universe@76 91 </c:when>
universe@76 92 <c:otherwise>
universe@78 93 <c:set var="cancelUrl">./projects/</c:set>
universe@76 94 </c:otherwise>
universe@76 95 </c:choose>
universe@76 96 <a href="${cancelUrl}" class="button">
universe@75 97 <fmt:message bundle="${lightpit_bundle}" key="button.cancel"/>
universe@75 98 </a>
universe@72 99 <button type="submit"><fmt:message bundle="${lightpit_bundle}" key="button.okay"/></button>
universe@51 100 </td>
universe@51 101 </tr>
universe@51 102 </tfoot>
universe@51 103 </table>
universe@51 104 </form>

mercurial