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

Sun, 04 Apr 2021 11:52:30 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 04 Apr 2021 11:52:30 +0200
changeset 185
5ec9fcfbdf9c
parent 184
e8eecee6aadf
child 186
05eec764facd
permissions
-rw-r--r--

re-enables the "create another" feature

universe@75 1 <%--
universe@75 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@75 3
universe@180 4 Copyright 2021 Mike Becker. All rights reserved.
universe@75 5
universe@75 6 Redistribution and use in source and binary forms, with or without
universe@75 7 modification, are permitted provided that the following conditions are met:
universe@75 8
universe@75 9 1. Redistributions of source code must retain the above copyright
universe@75 10 notice, this list of conditions and the following disclaimer.
universe@75 11
universe@75 12 2. Redistributions in binary form must reproduce the above copyright
universe@75 13 notice, this list of conditions and the following disclaimer in the
universe@75 14 documentation and/or other materials provided with the distribution.
universe@75 15
universe@75 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@75 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@75 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@75 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@75 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@75 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@75 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@75 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@75 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@75 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@75 26 --%>
universe@75 27 <%@page pageEncoding="UTF-8" %>
universe@75 28 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@75 29 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@75 30
universe@86 31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.IssueEditView" scope="request"/>
universe@184 32
universe@86 33 <c:set var="issue" scope="page" value="${viewmodel.issue}" />
universe@184 34 <c:set var="project" scope="page" value="${viewmodel.project}"/>
universe@184 35 <c:set var="component" scope="page" value="${viewmodel.component}"/>
universe@184 36 <c:set var="version" scope="page" value="${viewmodel.version}"/>
universe@75 37
universe@184 38 <c:set var="issuesHref" value="./projects/${project.node}/issues/${empty version ? '-' : version.node }/${empty component ? '-' : component.node}/"/>
universe@184 39
universe@184 40 <form action="${issuesHref}-/commit-issue" method="post">
universe@124 41 <table class="formtable fullwidth">
universe@75 42 <colgroup>
universe@75 43 <col>
universe@124 44 <col style="width: 100%">
universe@75 45 </colgroup>
universe@75 46 <tbody>
universe@113 47 <c:if test="${viewmodel.issue.id ge 0}">
universe@75 48 <tr>
universe@108 49 <th><fmt:message key="issue.id"/></th>
universe@108 50 <td>${issue.id}</td>
universe@108 51 </tr>
universe@113 52 </c:if>
universe@108 53 <tr>
universe@181 54 <th><fmt:message key="project"/></th>
universe@76 55 <td>
universe@86 56 <c:choose>
universe@184 57 <c:when test="${issue.project.id ge 0}">
universe@86 58 <c:out value="${issue.project.name}" />
universe@184 59 <input type="hidden" name="project" value="${issue.project.id}" />
universe@86 60 </c:when>
universe@86 61 <c:otherwise>
universe@184 62 <select name="project" required>
universe@86 63 <c:forEach var="project" items="${viewmodel.projects}">
universe@86 64 <option value="${project.id}">
universe@86 65 <c:out value="${project.name}" />
universe@86 66 </option>
universe@86 67 </c:forEach>
universe@86 68 </select>
universe@86 69 </c:otherwise>
universe@86 70 </c:choose>
universe@76 71 </td>
universe@76 72 </tr>
universe@76 73 <tr>
universe@103 74 <th><fmt:message key="issue.created"/></th>
universe@156 75 <td>
universe@156 76 <c:set var="dateValue" value="${issue.created}"/>
universe@156 77 <%@include file="../jspf/date-with-tooltip.jspf"%>
universe@156 78 </td>
universe@103 79 </tr>
universe@103 80 <tr>
universe@103 81 <th><fmt:message key="issue.updated"/></th>
universe@156 82 <td>
universe@156 83 <c:set var="dateValue" value="${issue.updated}"/>
universe@156 84 <%@include file="../jspf/date-with-tooltip.jspf"%>
universe@156 85 </td>
universe@103 86 </tr>
universe@103 87 <tr>
universe@181 88 <th><fmt:message key="component"/></th>
universe@134 89 <td>
universe@134 90 <select name="component">
universe@134 91 <option value="-1"><fmt:message key="placeholder.null-component"/></option>
universe@134 92 <c:forEach var="component" items="${viewmodel.components}">
universe@134 93 <option
universe@134 94 <c:if test="${not empty issue.component and component eq issue.component}">selected</c:if>
universe@178 95 <c:if test="${empty issue.component and component.id eq cid}">selected</c:if>
universe@134 96 value="${component.id}"><c:out value="${component.name}"/></option>
universe@134 97 </c:forEach>
universe@134 98 </select>
universe@134 99 </td>
universe@134 100 </tr>
universe@134 101 <tr>
universe@82 102 <th><fmt:message key="issue.category"/></th>
universe@75 103 <td>
universe@75 104 <select name="category">
universe@86 105 <c:forEach var="category" items="${viewmodel.issueCategory}">
universe@75 106 <option
universe@75 107 <c:if test="${category eq issue.category}">selected</c:if>
universe@75 108 value="${category}">
universe@75 109 <fmt:message key="issue.category.${category}" />
universe@75 110 </option>
universe@75 111 </c:forEach>
universe@75 112 </select>
universe@75 113 </td>
universe@75 114 </tr>
universe@75 115 <tr>
universe@82 116 <th><fmt:message key="issue.status"/></th>
universe@75 117 <td>
universe@75 118 <select name="status">
universe@86 119 <c:forEach var="status" items="${viewmodel.issueStatus}">
universe@75 120 <option
universe@75 121 <c:if test="${status eq issue.status}">selected</c:if>
universe@75 122 value="${status}">
universe@75 123 <fmt:message key="issue.status.${status}" />
universe@75 124 </option>
universe@75 125 </c:forEach>
universe@75 126 </select>
universe@75 127 </td>
universe@75 128 </tr>
universe@75 129 <tr>
universe@82 130 <th><fmt:message key="issue.subject"/></th>
universe@85 131 <td><input name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td>
universe@75 132 </tr>
universe@75 133 <tr>
universe@82 134 <th class="vtop"><fmt:message key="issue.description"/></th>
universe@75 135 <td>
universe@86 136 <textarea name="description" rows="10"><c:out value="${issue.description}"/></textarea>
universe@75 137 </td>
universe@75 138 </tr>
universe@75 139 <tr>
universe@82 140 <th><fmt:message key="issue.assignee"/></th>
universe@75 141 <td>
universe@75 142 <select name="assignee">
universe@136 143 <option value="-2" title="<fmt:message key="placeholder.auto-assignee.tooltip"/>"><fmt:message key="placeholder.auto-assignee"/></option>
universe@136 144 <option value="-1"
universe@136 145 <c:if test="${issue.id ge 0 and empty issue.assignee}">selected</c:if>
universe@136 146 ><fmt:message key="placeholder.null-assignee"/></option>
universe@86 147 <c:forEach var="user" items="${viewmodel.users}">
universe@75 148 <option
universe@75 149 <c:if test="${not empty issue.assignee and user eq issue.assignee}">selected</c:if>
universe@75 150 value="${user.id}"><c:out value="${user.displayname}"/></option>
universe@75 151 </c:forEach>
universe@75 152 </select>
universe@75 153 </td>
universe@75 154 </tr>
universe@83 155 <c:if test="${issue.project.id ge 0}">
universe@75 156 <tr>
universe@83 157 <th class="vtop"><fmt:message key="issue.affected-versions"/></th>
universe@83 158 <td>
universe@83 159 <c:set var="fieldname" value="affected"/>
universe@90 160 <c:set var="selectionList" value="${viewmodel.versionsRecent}"/>
universe@83 161 <c:set var="data" value="${issue.affectedVersions}" />
universe@115 162 <%@include file="../jspf/version-list.jspf"%>
universe@83 163 </td>
universe@75 164 </tr>
universe@75 165 <tr>
universe@83 166 <th class="vtop"><fmt:message key="issue.resolved-versions"/></th>
universe@83 167 <td>
universe@83 168 <c:set var="fieldname" value="resolved"/>
universe@90 169 <c:set var="selectionList" value="${viewmodel.versionsUpcoming}"/>
universe@83 170 <c:set var="data" value="${issue.resolvedVersions}" />
universe@115 171 <%@include file="../jspf/version-list.jspf"%>
universe@83 172 </td>
universe@75 173 </tr>
universe@83 174 </c:if>
universe@75 175 <tr>
universe@82 176 <th><fmt:message key="issue.eta"/></th>
universe@75 177 <td><input name="eta" type="date" value="<fmt:formatDate value="${issue.eta}" pattern="YYYY-MM-dd" />" /> </td>
universe@75 178 </tr>
universe@75 179 </tbody>
universe@75 180 <tfoot>
universe@75 181 <tr>
universe@75 182 <td colspan="2">
universe@185 183 <input type="checkbox" id="more" name="more" <c:if test="${more}">checked</c:if> />
universe@185 184 <label for="more"><fmt:message key="button.issue.create.another"/> </label>
universe@75 185 <input type="hidden" name="id" value="${issue.id}"/>
universe@146 186 <c:if test="${issue.id ge 0}">
universe@184 187 <a href="${issuesHref}${issue.id}" class="button">
universe@180 188 <fmt:message key="button.cancel"/>
universe@75 189 </a>
universe@146 190 </c:if>
universe@146 191 <c:if test="${issue.id lt 0}">
universe@184 192 <a href="${issuesHref}" class="button">
universe@180 193 <fmt:message key="button.cancel"/>
universe@146 194 </a>
universe@146 195 </c:if>
universe@180 196 <button type="submit"><fmt:message key="button.okay"/></button>
universe@75 197 </td>
universe@75 198 </tr>
universe@75 199 </tfoot>
universe@75 200 </table>
universe@75 201 </form>

mercurial