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

Sat, 17 Aug 2024 12:09:03 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 17 Aug 2024 12:09:03 +0200
changeset 323
ba2a1313eb98
parent 311
bf67e0ff7131
permissions
-rw-r--r--

Added tag v1.3.0 for changeset 7b154ddd29e3

<%--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright 2021 Mike Becker. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--%>
<%@page pageEncoding="UTF-8" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

<jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.IssueEditView" scope="request"/>

<c:set var="issue" scope="page" value="${viewmodel.issue}" />
<c:set var="project" scope="page" value="${viewmodel.project}"/>
<c:set var="issuesHref" value="./issues/"/>
<c:if test="${not empty viewmodel.pathInfos}">
    <c:set var="issuesHref" value="./${viewmodel.pathInfos.issuesHref}"/>
</c:if>

<form action="${issuesHref}-/commit" method="post">
    <input type="hidden" name="project" value="${issue.project.id}" />
    <table class="formtable fullwidth">
        <colgroup>
            <col>
            <col style="width: 100%">
        </colgroup>
        <tbody>
        <c:if test="${viewmodel.issue.id ge 0}">
        <tr>
            <th><fmt:message key="issue.id"/></th>
            <td>${issue.id}</td>
        </tr>
        </c:if>
        <tr>
            <th><label for="issue-component"><fmt:message key="component"/></label></th>
            <td>
                <select id="issue-component" name="component">
                    <option value="-1"><fmt:message key="placeholder.null-component"/></option>
                    <c:forEach var="comp" items="${viewmodel.components}">
                        <c:set var="isSelectedComponent" value="${not empty issue.component and comp eq issue.component}" scope="page"/>
                        <c:if test="${isSelectedComponent or comp.active}">
                        <option
                                <c:if test="${isSelectedComponent}">selected</c:if>
                                value="${comp.id}"><c:out value="${comp.name}"/></option>
                        </c:if>
                    </c:forEach>
                </select>
            </td>
        </tr>
        <tr>
            <th><label for="issue-category"><fmt:message key="issue.category"/></label></th>
            <td>
                <select id="issue-category" name="category">
                    <c:forEach var="category" items="${viewmodel.issueCategory}">
                        <option
                                <c:if test="${category eq issue.category}">selected</c:if>
                                value="${category}">
                            <fmt:message key="issue.category.${category}" />
                        </option>
                    </c:forEach>
                </select>
            </td>
        </tr>
        <tr>
            <th><label for="issue-status"><fmt:message key="issue.status"/></label></th>
            <td>
                <select id="issue-status" name="status">
                    <c:forEach var="status" items="${viewmodel.issueStatus}">
                        <option
                                <c:if test="${status eq issue.status}">selected</c:if>
                                value="${status}">
                                <fmt:message key="issue.status.${status}" />
                        </option>
                    </c:forEach>
                </select>
            </td>
        </tr>
        <tr>
            <th><label for="issue-subject"><fmt:message key="issue.subject"/></label></th>
            <td><input id="issue-subject" name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td>
        </tr>
        <tr>
            <th class="vtop"><label for="issue-description"><fmt:message key="issue.description"/></label></th>
            <td>
                <textarea id="issue-description" name="description" rows="10"><c:out value="${issue.description}"/></textarea>
            </td>
        </tr>
        <tr>
            <th><label for="issue-assignee"><fmt:message key="issue.assignee"/></label></th>
            <td>
                <select id="issue-assignee" name="assignee">
                    <option value="-2" title="<fmt:message key="placeholder.auto-assignee.tooltip"/>"><fmt:message key="placeholder.auto-assignee"/></option>
                    <option value="-1"
                            <c:if test="${issue.id ge 0 and empty issue.assignee}">selected</c:if>
                    ><fmt:message key="placeholder.null-assignee"/></option>
                    <c:forEach var="user" items="${viewmodel.users}">
                        <option
                                <c:if test="${not empty issue.assignee and user eq issue.assignee}">selected</c:if>
                                value="${user.id}"><c:out value="${user.displayname}"/></option>
                    </c:forEach>
                </select>
            </td>
        </tr>
        <c:if test="${issue.project.id ge 0}">
        <tr>
            <th class="vtop"><label for="issue-affected"><fmt:message key="issue.affected-versions"/></label></th>
            <td>
                <select id="issue-affected" name="affected">
                    <option value="-1"><fmt:message key="placeholder.null-version"/></option>
                    <c:forEach var="vselitem" items="${viewmodel.versionsRecent}">
                        <option value="${vselitem.id}" <c:if test="${issue.affected eq vselitem}">selected</c:if> >
                            <c:out value="${vselitem.name}" />
                        </option>
                    </c:forEach>
                </select>
            </td>
        </tr>
        <tr>
            <th class="vtop"><label for="issue-resolved"><fmt:message key="issue.resolved-versions"/></label></th>
            <td>
                <select id="issue-resolved" name="resolved">
                    <option value="-1"><fmt:message key="placeholder.null-version"/></option>
                    <c:forEach var="vselitem" items="${viewmodel.versionsUpcoming}">
                        <option value="${vselitem.id}" <c:if test="${issue.resolved eq vselitem}">selected</c:if> >
                            <c:out value="${vselitem.name}" />
                        </option>
                    </c:forEach>
                </select>
            </td>
        </tr>
        </c:if>
        <tr>
            <th><label for="issue-eta"><fmt:message key="issue.eta"/></label></th>
            <td><input id="issue-eta" name="eta" type="date" value="<fmt:formatDate value="${issue.eta}" pattern="YYYY-MM-dd" />" /> </td>
        </tr>
        <c:if test="${issue.id ge 0}">
        <tr>
            <th class="vtop"><label for="issue-comment"><fmt:message key="issue.comment"/></label> </th>
            <td><textarea id="issue-comment" rows="3" name="comment"></textarea></td>
        </tr>
        </c:if>
        </tbody>
        <tfoot>
        <tr>
            <td colspan="2">
                <input type="hidden" name="id" value="${issue.id}"/>
                <c:if test="${not empty viewmodel.pathInfos}">
                <input type="checkbox" id="more" name="more" <c:if test="${more}">checked</c:if> />
                <label for="more"><fmt:message key="button.issue.create.another"/> </label>
                </c:if>
                <c:if test="${issue.id ge 0}">
                <a href="${issuesHref}${issue.id}" class="button">
                    <fmt:message key="button.cancel"/>
                </a>
                </c:if>
                <c:if test="${issue.id lt 0}">
                    <a href="${issuesHref}" class="button">
                        <fmt:message key="button.cancel"/>
                    </a>
                </c:if>
                <button type="submit" name="save"><fmt:message key="button.save"/></button>
                <button type="submit" name="close"><fmt:message key="button.okay"/></button>
            </td>
        </tr>
        </tfoot>
    </table>
</form>

mercurial