src/main/webapp/WEB-INF/jsp/project-details.jsp

Sun, 21 Jun 2020 11:38:16 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 21 Jun 2020 11:38:16 +0200
changeset 88
1438e5a22c55
parent 86
0a658e53177c
child 99
a369fb1b3aa2
permissions
-rw-r--r--

simplifies version overviews by removing "scheduled issues"

universe@47 1 <%--
universe@47 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@47 3
universe@47 4 Copyright 2018 Mike Becker. All rights reserved.
universe@47 5
universe@47 6 Redistribution and use in source and binary forms, with or without
universe@47 7 modification, are permitted provided that the following conditions are met:
universe@47 8
universe@47 9 1. Redistributions of source code must retain the above copyright
universe@47 10 notice, this list of conditions and the following disclaimer.
universe@47 11
universe@47 12 2. Redistributions in binary form must reproduce the above copyright
universe@47 13 notice, this list of conditions and the following disclaimer in the
universe@47 14 documentation and/or other materials provided with the distribution.
universe@47 15
universe@47 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@47 17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@47 18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@47 19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@47 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@47 21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@47 22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@47 23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@47 24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@47 25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@47 26 --%>
universe@47 27 <%@page pageEncoding="UTF-8" %>
universe@47 28 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
universe@47 29 <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
universe@47 30
universe@86 31 <jsp:useBean id="viewmodel" type="de.uapcore.lightpit.viewmodel.ProjectView" scope="request" />
universe@47 32
universe@86 33 <c:set var="project" scope="page" value="${viewmodel.project}"/>
universe@86 34 <%@include file="../jspf/project-header.jsp"%>
universe@81 35
universe@47 36 <div id="tool-area">
universe@78 37 <a href="./projects/versions/edit" class="button"><fmt:message key="button.version.create"/></a>
universe@86 38 <a href="./projects/issues/edit?pid=${project.id}" class="button"><fmt:message key="button.issue.create"/></a>
universe@47 39 </div>
universe@47 40
universe@86 41 <h2><fmt:message key="progress" /></h2>
universe@86 42
universe@86 43 <c:set var="summary" value="${viewmodel.issuesTotal}" />
universe@86 44 <%@include file="../jspf/issue-summary.jsp"%>
universe@86 45
universe@86 46 <h2><fmt:message key="issue.without-version" /></h2>
universe@86 47
universe@86 48 <c:set var="issues" value="${viewmodel.issuesWithoutVersion}"/>
universe@86 49 <c:set var="summary" value="${viewmodel.issuesWithoutVersionTotal}" />
universe@86 50 <%@include file="../jspf/issue-summary.jsp"%>
universe@86 51 <%@include file="../jspf/issue-list.jsp"%>
universe@86 52
universe@86 53 <c:forEach var="versionInfo" items="${viewmodel.versionInfos}">
universe@80 54 <h2>
universe@86 55 <fmt:message key="version.label" /> <c:out value="${versionInfo.version.name}" /> - <fmt:message key="version.status.${versionInfo.version.status}"/>
universe@88 56 (<a href="./projects/versions/view?vid=${versionInfo.version.id}"><fmt:message key="version.open" /></a>)
universe@80 57 </h2>
universe@70 58
universe@86 59 <h3><fmt:message key="issues.resolved"/> </h3>
universe@86 60 <c:set var="summary" value="${versionInfo.resolvedTotal}"/>
universe@86 61 <c:set var="issues" value="${versionInfo.resolved}"/>
universe@86 62 <%@include file="../jspf/issue-summary.jsp"%>
universe@88 63 <c:if test="${not empty issues}">
universe@88 64 <%@include file="../jspf/issue-list.jsp"%>
universe@88 65 </c:if>
universe@86 66 </c:forEach>

mercurial