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

changeset 75
33b6843fdf8a
child 76
82f71fb1758a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Fri May 22 21:23:57 2020 +0200
     1.3 @@ -0,0 +1,162 @@
     1.4 +<%--
     1.5 +DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6 +
     1.7 +Copyright 2018 Mike Becker. All rights reserved.
     1.8 +
     1.9 +Redistribution and use in source and binary forms, with or without
    1.10 +modification, are permitted provided that the following conditions are met:
    1.11 +
    1.12 +1. Redistributions of source code must retain the above copyright
    1.13 +notice, this list of conditions and the following disclaimer.
    1.14 +
    1.15 +2. Redistributions in binary form must reproduce the above copyright
    1.16 +notice, this list of conditions and the following disclaimer in the
    1.17 +documentation and/or other materials provided with the distribution.
    1.18 +
    1.19 +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    1.20 +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    1.21 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    1.22 +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    1.23 +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    1.24 +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    1.25 +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    1.26 +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    1.27 +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    1.28 +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    1.29 +--%>
    1.30 +<%@page pageEncoding="UTF-8" %>
    1.31 +<%@page import="de.uapcore.lightpit.Constants" %>
    1.32 +<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    1.33 +<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    1.34 +
    1.35 +<c:set scope="page" var="moduleInfo" value="${requestScope[Constants.REQ_ATTR_MODULE_INFO]}"/>
    1.36 +
    1.37 +<jsp:useBean id="issue" type="de.uapcore.lightpit.entities.Issue" scope="request"/>
    1.38 +<jsp:useBean id="issueStatusEnum" type="de.uapcore.lightpit.entities.IssueStatus[]" scope="request"/>
    1.39 +<jsp:useBean id="issueCategoryEnum" type="de.uapcore.lightpit.entities.IssueCategory[]" scope="request"/>
    1.40 +<jsp:useBean id="versions" type="java.util.List<de.uapcore.lightpit.entities.Version>" scope="request"/>
    1.41 +<jsp:useBean id="users" type="java.util.List<de.uapcore.lightpit.entities.User>" scope="request"/>
    1.42 +
    1.43 +<form action="./${moduleInfo.modulePath}/issues/commit" method="post">
    1.44 +    <table class="formtable">
    1.45 +        <colgroup>
    1.46 +            <col>
    1.47 +            <col style="width: 75ch">
    1.48 +        </colgroup>
    1.49 +        <tbody>
    1.50 +        <tr>
    1.51 +            <th><fmt:message key="thead.issue.category"/></th>
    1.52 +            <td>
    1.53 +                <select name="category">
    1.54 +                    <c:forEach var="category" items="${issueCategoryEnum}">
    1.55 +                        <option
    1.56 +                                <c:if test="${category eq issue.category}">selected</c:if>
    1.57 +                                value="${category}">
    1.58 +                            <fmt:message key="issue.category.${category}" />
    1.59 +                        </option>
    1.60 +                    </c:forEach>
    1.61 +                </select>
    1.62 +            </td>
    1.63 +        </tr>
    1.64 +        <tr>
    1.65 +            <th><fmt:message key="thead.issue.status"/></th>
    1.66 +            <td>
    1.67 +                <select name="status">
    1.68 +                    <c:forEach var="status" items="${issueStatusEnum}">
    1.69 +                        <option
    1.70 +                                <c:if test="${status eq issue.status}">selected</c:if>
    1.71 +                                value="${status}">
    1.72 +                                <fmt:message key="issue.status.${status}" />
    1.73 +                        </option>
    1.74 +                    </c:forEach>
    1.75 +                </select>
    1.76 +            </td>
    1.77 +        </tr>
    1.78 +        <tr>
    1.79 +            <th><fmt:message key="thead.issue.subject"/></th>
    1.80 +            <td><input name="subject" type="text" maxlength="20" required value="<c:out value="${issue.subject}"/>" /></td>
    1.81 +        </tr>
    1.82 +        <tr>
    1.83 +            <th class="vtop"><fmt:message key="thead.issue.description"/></th>
    1.84 +            <td>
    1.85 +                <textarea name="description"><c:out value="${issue.description}"/></textarea>
    1.86 +            </td>
    1.87 +        </tr>
    1.88 +        <tr>
    1.89 +            <th><fmt:message key="thead.issue.assignee"/></th>
    1.90 +            <td>
    1.91 +                <select name="assignee">
    1.92 +                    <option value="-1"><fmt:message key="placeholder.null-assignee"/></option>
    1.93 +                    <c:forEach var="user" items="${users}">
    1.94 +                        <option
    1.95 +                                <c:if test="${not empty issue.assignee and user eq issue.assignee}">selected</c:if>
    1.96 +                                value="${user.id}"><c:out value="${user.displayname}"/></option>
    1.97 +                    </c:forEach>
    1.98 +                </select>
    1.99 +            </td>
   1.100 +        </tr>
   1.101 +        <tr>
   1.102 +            <th>
   1.103 +                <c:choose>
   1.104 +                    <c:when test="${issue.affectedVersions.size() gt 1}">
   1.105 +                        <fmt:message key="thead.issue.affected-versions"/>
   1.106 +                    </c:when>
   1.107 +                    <c:otherwise>
   1.108 +                        <fmt:message key="thead.issue.affected-version"/>
   1.109 +                    </c:otherwise>
   1.110 +                </c:choose>
   1.111 +            </th>
   1.112 +            <td>TODO</td>
   1.113 +        </tr>
   1.114 +        <tr>
   1.115 +            <th>
   1.116 +                <c:choose>
   1.117 +                    <c:when test="${issue.scheduledVersions.size() gt 1}">
   1.118 +                        <fmt:message key="thead.issue.scheduled-versions"/>
   1.119 +                    </c:when>
   1.120 +                    <c:otherwise>
   1.121 +                        <fmt:message key="thead.issue.scheduled-version"/>
   1.122 +                    </c:otherwise>
   1.123 +                </c:choose>
   1.124 +            </th>
   1.125 +            <td>TODO</td>
   1.126 +        </tr>
   1.127 +        <tr>
   1.128 +            <th>
   1.129 +                <c:choose>
   1.130 +                    <c:when test="${issue.resolvedVersions.size() gt 1}">
   1.131 +                        <fmt:message key="thead.issue.resolved-versions"/>
   1.132 +                    </c:when>
   1.133 +                    <c:otherwise>
   1.134 +                        <fmt:message key="thead.issue.resolved-version"/>
   1.135 +                    </c:otherwise>
   1.136 +                </c:choose>
   1.137 +            </th>
   1.138 +            <td>TODO</td>
   1.139 +        </tr>
   1.140 +        <tr>
   1.141 +            <th><fmt:message key="thead.issue.eta"/></th>
   1.142 +            <td><input name="eta" type="date" value="<fmt:formatDate value="${issue.eta}" pattern="YYYY-MM-dd" />" /> </td>
   1.143 +        </tr>
   1.144 +        <tr>
   1.145 +            <th><fmt:message key="thead.issue.created"/></th>
   1.146 +            <td><fmt:formatDate value="${issue.created}" /></td>
   1.147 +        </tr>
   1.148 +        <tr>
   1.149 +            <th><fmt:message key="thead.issue.updated"/></th>
   1.150 +            <td><fmt:formatDate value="${issue.updated}" /></td>
   1.151 +        </tr>
   1.152 +        </tbody>
   1.153 +        <tfoot>
   1.154 +        <tr>
   1.155 +            <td colspan="2">
   1.156 +                <input type="hidden" name="id" value="${issue.id}"/>
   1.157 +                <a href="./${moduleInfo.modulePath}/view?pid=${issue.project.id}" class="button">
   1.158 +                    <fmt:message bundle="${lightpit_bundle}" key="button.cancel"/>
   1.159 +                </a>
   1.160 +                <button type="submit"><fmt:message bundle="${lightpit_bundle}" key="button.okay"/></button>
   1.161 +            </td>
   1.162 +        </tr>
   1.163 +        </tfoot>
   1.164 +    </table>
   1.165 +</form>

mercurial