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

changeset 251
7ea0f266da41
parent 220
1f7e76a213dd
child 292
703591e739f4
equal deleted inserted replaced
250:ce6d539bb970 251:7ea0f266da41
6 <table class="fullwidth datatable medskip"> 6 <table class="fullwidth datatable medskip">
7 <colgroup> 7 <colgroup>
8 <col style="width: auto" /> 8 <col style="width: auto" />
9 <col style="width: 10%" /> 9 <col style="width: 10%" />
10 <col style="width: 10%" /> 10 <col style="width: 10%" />
11 <col style="width: 10%" />
11 </colgroup> 12 </colgroup>
12 <thead> 13 <thead>
13 <tr> 14 <tr>
14 <th><fmt:message key="issue.subject"/></th> 15 <th><fmt:message key="issue.subject"/></th>
15 <th><fmt:message key="issue.eta"/></th> 16 <th><fmt:message key="issue.eta"/></th>
17 <th><fmt:message key="issue.updated"/></th>
16 <th><fmt:message key="issue.assignee"/></th> 18 <th><fmt:message key="issue.assignee"/></th>
17 </tr> 19 </tr>
18 </thead> 20 </thead>
19 <tbody> 21 <tbody>
20 <c:forEach var="issue" items="${issues}"> 22 <c:forEach var="issue" items="${issues}">
37 <span class="nowrap <c:if test="${issue.overdue}">eta-overdue</c:if> "> 39 <span class="nowrap <c:if test="${issue.overdue}">eta-overdue</c:if> ">
38 <fmt:formatDate value="${issue.eta}" /> 40 <fmt:formatDate value="${issue.eta}" />
39 </span> 41 </span>
40 </td> 42 </td>
41 <td> 43 <td>
44 <span class="nowrap">
45 <fmt:formatDate value="${issue.updated}" />
46 </span>
47 </td>
48 <td>
42 <c:if test="${not empty issue.assignee}"> 49 <c:if test="${not empty issue.assignee}">
43 <c:if test="${not empty issue.assignee.mail}"> 50 <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> 51 <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>
45 </c:if> 52 </c:if>
46 <c:if test="${empty issue.assignee.mail}"> 53 <c:if test="${empty issue.assignee.mail}">

mercurial