Thu, 13 May 2021 11:28:50 +0200
#109 - add RSS feed
<%-- issues: List<Issue> version: Version? component: Component? --%> <table class="fullwidth datatable medskip"> <colgroup> <col width="auto" /> <col width="10%" /> </colgroup> <thead> <tr> <th><fmt:message key="issue.subject"/></th> <th><fmt:message key="issue.eta"/></th> </tr> </thead> <tbody> <c:forEach var="issue" items="${issues}"> <tr> <td> <span class="phase-${issue.status.phase.number}"> <a href="./projects/${issue.project.node}/issues/${empty version ? '-' : version.node }/${empty component ? '-' : component.node}/${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> </tr> </c:forEach> </tbody> </table>