src/main/webapp/WEB-INF/jspf/issue-list.jspf

Mon, 05 Aug 2024 18:40:47 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 05 Aug 2024 18:40:47 +0200
changeset 311
bf67e0ff7131
parent 308
7b5f6dd8dad6
permissions
-rw-r--r--

add new global issues page - fixes #404

<%--
issues: List<Issue>
issuesHref: String
showVersionInfo: boolean
showProjectInfo: boolean
--%>
<table class="fullwidth datatable medskip">
    <colgroup>
        <c:if test="${showProjectInfo}">
        <col style="width: 10%" />
        </c:if>
        <col style="width: auto" />
        <col style="width: 10%" />
        <col style="width: 10%" />
        <col style="width: 10%" />
    </colgroup>
    <thead>
        <tr>
            <c:if test="${showProjectInfo}">
            <th><fmt:message key="project"/></th>
            </c:if>
            <th><fmt:message key="issue.subject"/></th>
            <th><fmt:message key="issue.eta"/></th>
            <th><fmt:message key="issue.updated"/></th>
            <th><fmt:message key="issue.assignee"/></th>
        </tr>
    </thead>
    <tbody>
    <c:forEach var="issue" items="${issues}">
        <tr>
            <c:if test="${showProjectInfo}">
            <td>
                <a href="./projects/${issue.project.node}">
                    <c:out value="${issue.project.name}"/>
                </a>
            </td>
            </c:if>
            <td>
                <span class="phase-${issue.status.phase.number}">
                    <a href="${issuesHref}${issue.id}">
                        #${issue.id}&nbsp;-&nbsp;<c:out value="${issue.subject}" />
                    </a>
                </span>
                <div style="display: inline-block; width: .25em"></div>
                <div class="issue-tag ${issue.category}">
                    <fmt:message key="issue.category.${issue.category}" />
                </div>
                <div class="issue-tag phase-${issue.status.phase.number}">
                    <fmt:message key="issue.status.${issue.status}" />
                </div>
                <c:if test="${showVersionInfo and issue.resolved != null}">
                <div class="issue-tag">
                    <c:out value="${issue.resolved.name}"/>
                </div>
                </c:if>
            </td>
            <td>
                <span class="nowrap <c:if test="${issue.overdue}">eta-overdue</c:if> ">
                    <fmt:formatDate value="${issue.eta}" />
                </span>
            </td>
            <td>
                <span class="nowrap">
                    <fmt:formatDate value="${issue.updated}" />
                </span>
            </td>
            <td>
                <c:if test="${not empty issue.assignee}">
                    <c:if test="${not empty issue.assignee.mail}">
                        <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>
                    </c:if>
                    <c:if test="${empty issue.assignee.mail}">
                        <span title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></span>
                    </c:if>
                </c:if>
            </td>
        </tr>
    </c:forEach>
    </tbody>
</table>

mercurial