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

Fri, 23 Oct 2020 20:34:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 23 Oct 2020 20:34:57 +0200
changeset 150
822b7e3d064d
parent 146
b0e83cab0bde
child 156
c5d6820d884e
permissions
-rw-r--r--

migrate entities package

universe@75 1 <%--
universe@75 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@75 3
universe@75 4 Copyright 2018 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@146 31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.IssueDetailView" scope="request"/>
universe@86 32 <c:set var="issue" scope="page" value="${viewmodel.issue}" />
universe@75 33
universe@146 34 <table class="formtable fullwidth">
universe@146 35 <colgroup>
universe@146 36 <col>
universe@146 37 <col style="width: 100%">
universe@146 38 </colgroup>
universe@146 39 <tbody>
universe@146 40 <c:if test="${viewmodel.issue.id ge 0}">
universe@146 41 <tr>
universe@146 42 <th><fmt:message key="issue.id"/></th>
universe@146 43 <td>${issue.id}</td>
universe@146 44 </tr>
universe@146 45 </c:if>
universe@146 46 <tr>
universe@146 47 <th><fmt:message key="issue.project"/></th>
universe@146 48 <td>
universe@146 49 <c:out value="${issue.project.name}" />
universe@146 50 </td>
universe@146 51 </tr>
universe@146 52 <tr>
universe@146 53 <th><fmt:message key="issue.created"/></th>
universe@146 54 <td><fmt:formatDate value="${issue.created}" /></td>
universe@146 55 </tr>
universe@146 56 <tr>
universe@146 57 <th><fmt:message key="issue.updated"/></th>
universe@146 58 <td><fmt:formatDate value="${issue.updated}" /></td>
universe@146 59 </tr>
universe@146 60 <tr>
universe@146 61 <th><fmt:message key="issue.component"/></th>
universe@146 62 <td>
universe@146 63 <c:if test="${not empty issue.component}">
universe@146 64 <c:out value="${issue.component.name}"/>
universe@146 65 </c:if>
universe@146 66 <c:if test="${empty issue.component}">
universe@146 67 <fmt:message key="placeholder.null-component"/>
universe@146 68 </c:if>
universe@146 69 </td>
universe@146 70 </tr>
universe@146 71 <tr>
universe@146 72 <th><fmt:message key="issue.category"/></th>
universe@146 73 <td>
universe@146 74 <div class="issue-tag ${issue.category}" style="width: auto">
universe@146 75 <fmt:message key="issue.category.${issue.category}" />
universe@146 76 </div>
universe@146 77 </td>
universe@146 78 </tr>
universe@146 79 <tr>
universe@146 80 <th><fmt:message key="issue.status"/></th>
universe@146 81 <td>
universe@150 82 <div class="issue-tag phase-${issue.status.phase.number}" style="width: auto">
universe@146 83 <fmt:message key="issue.status.${issue.status}" />
universe@146 84 </div>
universe@146 85 </td>
universe@146 86 </tr>
universe@146 87 <tr>
universe@146 88 <th><fmt:message key="issue.subject"/></th>
universe@146 89 <td><c:out value="${issue.subject}"/></td>
universe@146 90 </tr>
universe@146 91 <tr>
universe@146 92 <th class="vtop"><fmt:message key="issue.description"/></th>
universe@146 93 <td>
universe@146 94 <textarea readonly rows="10"><c:out value="${issue.description}"/></textarea>
universe@146 95 </td>
universe@146 96 </tr>
universe@146 97 <tr>
universe@146 98 <th><fmt:message key="issue.assignee"/></th>
universe@146 99 <td>
universe@146 100 <c:if test="${not empty issue.assignee}">
universe@146 101 <c:out value="${issue.assignee.displayname}"/>
universe@146 102 </c:if>
universe@146 103 <c:if test="${empty issue.assignee}">
universe@146 104 <fmt:message key="placeholder.null-assignee" />
universe@146 105 </c:if>
universe@146 106 </td>
universe@146 107 </tr>
universe@146 108 <tr>
universe@146 109 <th class="vtop"><fmt:message key="issue.affected-versions"/></th>
universe@146 110 <td>
universe@146 111 <c:forEach var="version" items="${issue.affectedVersions}">
universe@146 112 <c:out value="${version.name}"/>
universe@146 113 </c:forEach>
universe@146 114 </td>
universe@146 115 </tr>
universe@146 116 <tr>
universe@146 117 <th class="vtop"><fmt:message key="issue.resolved-versions"/></th>
universe@146 118 <td>
universe@146 119 <c:forEach var="version" items="${issue.resolvedVersions}">
universe@146 120 <c:out value="${version.name}"/>
universe@146 121 </c:forEach>
universe@146 122 </td>
universe@146 123 </tr>
universe@146 124 <tr>
universe@146 125 <th><fmt:message key="issue.eta"/></th>
universe@146 126 <td><fmt:formatDate value="${issue.eta}" /></td>
universe@146 127 </tr>
universe@146 128 </tbody>
universe@146 129 <tfoot>
universe@146 130 <tr>
universe@146 131 <td colspan="2">
universe@146 132 <%-- TODO: fix #14 --%>
universe@146 133 <a href="./projects/${issue.project.node}/all-components/all-versions/issues/" class="button">
universe@146 134 <fmt:message bundle="${lightpit_bundle}" key="button.cancel"/>
universe@146 135 </a>
universe@146 136 <a href="./projects/${issue.project.node}/issues/${issue.id}/edit" class="button submit">
universe@146 137 <fmt:message key="button.issue.edit"/>
universe@146 138 </a>
universe@146 139 </td>
universe@146 140 </tr>
universe@146 141 </tfoot>
universe@146 142 </table>
universe@146 143
universe@124 144 <hr class="comments-separator"/>
universe@124 145 <h2><fmt:message key="issue.comments"/></h2>
universe@124 146 <c:if test="${viewmodel.issue.id ge 0}">
universe@131 147 <form id="comment-form" action="./projects/commit-issue-comment" method="post">
universe@124 148 <table class="formtable fullwidth">
universe@124 149 <tbody>
universe@124 150 <tr>
universe@125 151 <td><textarea rows="5" name="comment" required></textarea></td>
universe@124 152 </tr>
universe@124 153 </tbody>
universe@124 154 <tfoot>
universe@124 155 <tr>
universe@124 156 <td>
universe@124 157 <input type="hidden" name="issueid" value="${issue.id}"/>
universe@124 158 <button type="submit"><fmt:message key="button.comment"/></button>
universe@124 159 </td>
universe@124 160 </tr>
universe@124 161 </tfoot>
universe@124 162 </table>
universe@124 163 </form>
universe@124 164 <c:forEach var="comment" items="${viewmodel.comments}">
universe@124 165 <div class="comment">
universe@124 166 <div class="caption">
universe@124 167 <c:if test="${not empty comment.author}">
universe@124 168 <c:out value="${comment.author.displayname}"/>
universe@124 169 </c:if>
universe@124 170 <c:if test="${empty comment.author}">
universe@124 171 <fmt:message key="issue.comments.anonauthor"/>
universe@124 172 </c:if>
universe@124 173 </div>
universe@124 174 <div class="smalltext">
universe@124 175 <fmt:formatDate type="BOTH" value="${comment.created}" />
universe@124 176 <c:if test="${comment.updateCount gt 0}">
universe@124 177 <!-- TODO: update count -->
universe@124 178 </c:if>
universe@124 179 </div>
universe@124 180 <div class="medskip">
universe@124 181 <c:out value="${comment.comment}"/>
universe@124 182 </div>
universe@124 183 </div>
universe@124 184 </c:forEach>
universe@124 185 </c:if>
universe@124 186

mercurial