src/main/webapp/WEB-INF/jsp/versions.jsp

changeset 114
dbd5c60c29e6
parent 112
a9221ecacd05
child 115
c27638a50c92
equal deleted inserted replaced
113:eba08a3a7eb2 114:dbd5c60c29e6
76 </tr> 76 </tr>
77 </thead> 77 </thead>
78 <tbody> 78 <tbody>
79 <c:forEach var="versionInfo" items="${viewmodel.versionInfo}" > 79 <c:forEach var="versionInfo" items="${viewmodel.versionInfo}" >
80 <tr> 80 <tr>
81 <td style="width: 2em;"><a href="./projects/versions/edit?vid=${versionInfo.version.id}">&#x270e;</a></td> 81 <td rowspan="2" style="width: 2em;"><a href="./projects/versions/edit?vid=${versionInfo.version.id}">&#x270e;</a></td>
82 <td> 82 <td rowspan="2">
83 <a href="projects/view?pid=${viewmodel.projectInfo.project.id}&vid=${versionInfo.version.id}"> 83 <a href="projects/view?pid=${viewmodel.projectInfo.project.id}&vid=${versionInfo.version.id}">
84 <c:out value="${versionInfo.version.name}"/> 84 <c:out value="${versionInfo.version.name}"/>
85 </a> 85 </a>
86 <div class="version-tag version-${versionInfo.version.status}"> 86 <div class="version-tag version-${versionInfo.version.status}">
87 <c:out value="${versionInfo.version.status}"/> 87 <c:out value="${versionInfo.version.status}"/>
92 <td class="hright">${versionInfo.resolvedTotal.done}</td> 92 <td class="hright">${versionInfo.resolvedTotal.done}</td>
93 <td class="hright">${versionInfo.reportedTotal.open}</td> 93 <td class="hright">${versionInfo.reportedTotal.open}</td>
94 <td class="hright">${versionInfo.reportedTotal.active}</td> 94 <td class="hright">${versionInfo.reportedTotal.active}</td>
95 <td class="hright">${versionInfo.reportedTotal.done}</td> 95 <td class="hright">${versionInfo.reportedTotal.done}</td>
96 </tr> 96 </tr>
97 <tr>
98 <td colspan="3">
99 <c:set var="summary" value="${versionInfo.resolvedTotal}"/>
100 <%@include file="../jspf/issue-progress.jspf" %>
101 </td>
102 <td colspan="3">
103 <c:set var="summary" value="${versionInfo.reportedTotal}"/>
104 <%@include file="../jspf/issue-progress.jspf" %>
105 </td>
106 </tr>
97 </c:forEach> 107 </c:forEach>
98 </tbody> 108 </tbody>
99 </table> 109 </table>

mercurial