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

changeset 220
1f7e76a213dd
parent 184
e8eecee6aadf
child 251
7ea0f266da41
equal deleted inserted replaced
219:556c03f1dd4e 220:1f7e76a213dd
3 version: Version? 3 version: Version?
4 component: Component? 4 component: Component?
5 --%> 5 --%>
6 <table class="fullwidth datatable medskip"> 6 <table class="fullwidth datatable medskip">
7 <colgroup> 7 <colgroup>
8 <col width="auto" /> 8 <col style="width: auto" />
9 <col width="10%" /> 9 <col style="width: 10%" />
10 <col style="width: 10%" />
10 </colgroup> 11 </colgroup>
11 <thead> 12 <thead>
12 <tr> 13 <tr>
13 <th><fmt:message key="issue.subject"/></th> 14 <th><fmt:message key="issue.subject"/></th>
14 <th><fmt:message key="issue.eta"/></th> 15 <th><fmt:message key="issue.eta"/></th>
16 <th><fmt:message key="issue.assignee"/></th>
15 </tr> 17 </tr>
16 </thead> 18 </thead>
17 <tbody> 19 <tbody>
18 <c:forEach var="issue" items="${issues}"> 20 <c:forEach var="issue" items="${issues}">
19 <tr> 21 <tr>
34 <td> 36 <td>
35 <span class="nowrap <c:if test="${issue.overdue}">eta-overdue</c:if> "> 37 <span class="nowrap <c:if test="${issue.overdue}">eta-overdue</c:if> ">
36 <fmt:formatDate value="${issue.eta}" /> 38 <fmt:formatDate value="${issue.eta}" />
37 </span> 39 </span>
38 </td> 40 </td>
41 <td>
42 <c:if test="${not empty issue.assignee}">
43 <c:if test="${not empty issue.assignee.mail}">
44 <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>
45 </c:if>
46 <c:if test="${empty issue.assignee.mail}">
47 <span title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></span>
48 </c:if>
49 </c:if>
50 </td>
39 </tr> 51 </tr>
40 </c:forEach> 52 </c:forEach>
41 </tbody> 53 </tbody>
42 </table> 54 </table>

mercurial