Skip to content

Commit ef8fcf2

Browse files
committed
Add total to Overall Status report
Fixes #38
1 parent 8134563 commit ef8fcf2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/main/webapp/WEB-INF/views/reports/overall-status.jsp

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
<%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
77
<c:set var="title" value="Overall Signoff Status"/>
88
<t:reports-page title="${title}">
9-
<jsp:attribute name="stylesheets">
9+
<jsp:attribute name="stylesheets">
10+
<style>
11+
.chart-legend tbody tr, .chart-legend tbody th, .chart-legend tbody td {
12+
border-bottom: none;
13+
}
14+
</style>
1015
</jsp:attribute>
1116
<jsp:attribute name="scripts">
1217
<c:choose>
@@ -149,6 +154,12 @@
149154
</td>
150155
</tr>
151156
</c:forEach>
157+
<tr>
158+
<th></th>
159+
<td></td>
160+
<td><fmt:formatNumber value="${totalCount eq 0 ? 0 : totalCount}"/></td>
161+
<td></td>
162+
</tr>
152163
</tbody>
153164
</table>
154165
<div class="chart-footnote">

0 commit comments

Comments
 (0)