src/main/webapp/WEB-INF/jspf/issue-summary.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 87
501addad452b
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 summary: IssueSummary
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 <div class="issue-summary">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 <div class="row">
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 <div class="caption"><fmt:message key="issues.open"/>:</div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 <div><c:out value="${summary.open}"/></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 <div class="caption"><fmt:message key="issues.active"/>:</div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 <div><c:out value="${summary.active}"/></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 <div class="caption"><fmt:message key="issues.done"/>:</div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 <div><c:out value="${summary.done}"/></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 </div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 </div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15
87
501addad452b smaller issue summary progress bars
Mike Becker <universe@uap-core.de>
parents: 86
diff changeset
16 <div class="issue-progress-bar" style="width: 100ex; height: 1.25em;">
86
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 <div class="open" style="width: ${summary.openPercent}%"></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 <div class="active" style="width: ${summary.activePercent}%"></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 <div class="done" style="width: ${summary.donePercent}%"></div>
0a658e53177c improves issue overview and adds progress information
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 </div>

mercurial