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

changeset 311
bf67e0ff7131
parent 308
7b5f6dd8dad6
equal deleted inserted replaced
310:bbf4eb9a71f8 311:bf67e0ff7131
1 <%-- 1 <%--
2 issues: List<Issue> 2 issues: List<Issue>
3 issuesHref: String 3 issuesHref: String
4 showVersionInfo: boolean 4 showVersionInfo: boolean
5 showProjectInfo: boolean
5 --%> 6 --%>
6 <table class="fullwidth datatable medskip"> 7 <table class="fullwidth datatable medskip">
7 <colgroup> 8 <colgroup>
9 <c:if test="${showProjectInfo}">
10 <col style="width: 10%" />
11 </c:if>
8 <col style="width: auto" /> 12 <col style="width: auto" />
9 <col style="width: 10%" /> 13 <col style="width: 10%" />
10 <col style="width: 10%" /> 14 <col style="width: 10%" />
11 <col style="width: 10%" /> 15 <col style="width: 10%" />
12 </colgroup> 16 </colgroup>
13 <thead> 17 <thead>
14 <tr> 18 <tr>
19 <c:if test="${showProjectInfo}">
20 <th><fmt:message key="project"/></th>
21 </c:if>
15 <th><fmt:message key="issue.subject"/></th> 22 <th><fmt:message key="issue.subject"/></th>
16 <th><fmt:message key="issue.eta"/></th> 23 <th><fmt:message key="issue.eta"/></th>
17 <th><fmt:message key="issue.updated"/></th> 24 <th><fmt:message key="issue.updated"/></th>
18 <th><fmt:message key="issue.assignee"/></th> 25 <th><fmt:message key="issue.assignee"/></th>
19 </tr> 26 </tr>
20 </thead> 27 </thead>
21 <tbody> 28 <tbody>
22 <c:forEach var="issue" items="${issues}"> 29 <c:forEach var="issue" items="${issues}">
23 <tr> 30 <tr>
31 <c:if test="${showProjectInfo}">
32 <td>
33 <a href="./projects/${issue.project.node}">
34 <c:out value="${issue.project.name}"/>
35 </a>
36 </td>
37 </c:if>
24 <td> 38 <td>
25 <span class="phase-${issue.status.phase.number}"> 39 <span class="phase-${issue.status.phase.number}">
26 <a href="${issuesHref}${issue.id}"> 40 <a href="${issuesHref}${issue.id}">
27 #${issue.id}&nbsp;-&nbsp;<c:out value="${issue.subject}" /> 41 #${issue.id}&nbsp;-&nbsp;<c:out value="${issue.subject}" />
28 </a> 42 </a>

mercurial