src/main/webapp/WEB-INF/jsp/project-details.jsp

changeset 75
33b6843fdf8a
parent 74
91d1fc2a3a14
child 78
bb4c52bf3439
equal deleted inserted replaced
74:91d1fc2a3a14 75:33b6843fdf8a
64 </c:if> 64 </c:if>
65 65
66 <table id="issue-list" class="datatable medskip"> 66 <table id="issue-list" class="datatable medskip">
67 <thead> 67 <thead>
68 <tr> 68 <tr>
69 <th></th>
70 <th><fmt:message key="thead.issue.subject"/></th> 69 <th><fmt:message key="thead.issue.subject"/></th>
70 <th><fmt:message key="thead.issue.assignee"/></th>
71 <th><fmt:message key="thead.issue.category"/></th> 71 <th><fmt:message key="thead.issue.category"/></th>
72 <th><fmt:message key="thead.issue.status"/></th> 72 <th><fmt:message key="thead.issue.status"/></th>
73 <th><fmt:message key="thead.issue.created"/></th> 73 <th><fmt:message key="thead.issue.created"/></th>
74 <th><fmt:message key="thead.issue.updated"/></th> 74 <th><fmt:message key="thead.issue.updated"/></th>
75 <th><fmt:message key="thead.issue.eta"/></th> 75 <th><fmt:message key="thead.issue.eta"/></th>
76 <!-- TODO: add other information --> 76 <!-- TODO: add other information -->
77 </tr> 77 </tr>
78 </thead> 78 </thead>
79 <!-- TODO: add actual list --> 79 <tbody>
80 <c:forEach var="issue" items="${issues}">
81 <tr>
82 <td>
83 <a href="./projects/issues/edit?id=${issue.id}">
84 <c:out value="${issue.subject}" />
85 </a>
86 </td>
87 <td>
88 <c:if test="${not empty issue.assignee}">
89 <c:out value="${issue.assignee.shortDisplayname}" />
90 </c:if>
91 <c:if test="${empty issue.assignee}">
92 <fmt:message key="placeholder.null-assignee" />
93 </c:if>
94 </td>
95 <td>
96 <fmt:message key="issue.category.${issue.category}" />
97 </td>
98 <td>
99 <fmt:message key="issue.status.${issue.status}" />
100 </td>
101 <td>
102 <fmt:formatDate value="${issue.created}" type="BOTH"/>
103 </td>
104 <td>
105 <fmt:formatDate value="${issue.updated}" type="BOTH"/>
106 </td>
107 <td>
108 <fmt:formatDate value="${issue.eta}" />
109 </td>
110 </tr>
111 </c:forEach>
112 </tbody>
80 </table> 113 </table>

mercurial