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

Sat, 29 Aug 2020 11:06:31 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 29 Aug 2020 11:06:31 +0200
changeset 100
7e3c61c340d3
parent 92
b723b31383ac
child 101
c34c81b87674
permissions
-rw-r--r--

fixes issues and version information not set in correct order

86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 <%--
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 issues: List<Issue>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 --%>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 <table class="fullwidth datatable medskip">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 <thead>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 <tr>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 <th><fmt:message key="issue.subject"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 <th><fmt:message key="issue.assignee"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 <th><fmt:message key="issue.category"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 <th><fmt:message key="issue.status"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 <th><fmt:message key="issue.created"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 <th><fmt:message key="issue.updated"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 <th><fmt:message key="issue.eta"/></th>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 </tr>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 </thead>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 <tbody>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 <c:forEach var="issue" items="${issues}">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 <tr>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 <td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 <span class="phase-${issue.status.phase}">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 <a href="./projects/issues/edit?issue=${issue.id}">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 <c:out value="${issue.subject}" />
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 </a>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 </span>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 <td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 <c:if test="${not empty issue.assignee}">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29 <c:out value="${issue.assignee.shortDisplayname}" />
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 </c:if>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 <c:if test="${empty issue.assignee}">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32 <fmt:message key="placeholder.null-assignee" />
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33 </c:if>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 </td>
92
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
35 <td class="hcenter">
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
36 <div class="issue-tag ${issue.category}">
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
37 <fmt:message key="issue.category.${issue.category}" />
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
38 </div>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 </td>
92
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
40 <td class="hcenter">
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
41 <div class="issue-tag phase-${issue.status.phase}">
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
42 <fmt:message key="issue.status.${issue.status}" />
b723b31383ac adds graphical visualization for issue type and status
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
43 </div>
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
44 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45 <td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
46 <fmt:formatDate value="${issue.created}" type="BOTH"/>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
47 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
48 <td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
49 <fmt:formatDate value="${issue.updated}" type="BOTH"/>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
50 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
51 <td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
52 <fmt:formatDate value="${issue.eta}" />
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
53 </td>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
54 </tr>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
55 </c:forEach>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
56 </tbody>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
57 </table>

mercurial