Mon, 30 Oct 2023 14:44:36 +0100
add possibility to show issues w/o version or component - fixes #335
<%-- issues: List<Issue> issuesHref: String --%> <table class="fullwidth datatable medskip"> <colgroup> <col style="width: auto" /> <col style="width: 10%" /> <col style="width: 10%" /> <col style="width: 10%" /> </colgroup> <thead> <tr> <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> <td> <span class="phase-${issue.status.phase.number}"> <a href="./${issuesHref}${issue.id}"> #${issue.id} - <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> </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>