summaryrefslogtreecommitdiff
path: root/src/main/webapp/WEB-INF/jsp/show_suite_release.jsp
diff options
context:
space:
mode:
authorYoung Gyu Park <younggyu@google.com>2018-03-23 14:37:24 +0900
committerYoung Gyu Park <younggyu@google.com>2018-03-26 14:22:53 +0900
commitbad18d984ff5cf173daa4d4888fae7674c95b6b0 (patch)
tree4d849603cdd9e3ac5266a569cfa8cfbe65960cb4 /src/main/webapp/WEB-INF/jsp/show_suite_release.jsp
parentb73a5e5d5967996b8b075021014c351fc76b0d62 (diff)
downloaddashboard-bad18d984ff5cf173daa4d4888fae7674c95b6b0.tar.gz
New Test Suite Page for test suite data.
Test: Tested with browser on staging server Bug: 76180041 Change-Id: I355834dbca9e59510936dcc9f9361a8999fd56e5
Diffstat (limited to 'src/main/webapp/WEB-INF/jsp/show_suite_release.jsp')
-rw-r--r--src/main/webapp/WEB-INF/jsp/show_suite_release.jsp64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/main/webapp/WEB-INF/jsp/show_suite_release.jsp b/src/main/webapp/WEB-INF/jsp/show_suite_release.jsp
new file mode 100644
index 0000000..5cb5fca
--- /dev/null
+++ b/src/main/webapp/WEB-INF/jsp/show_suite_release.jsp
@@ -0,0 +1,64 @@
+<%--
+ ~ Copyright (c) 2018 Google Inc. All Rights Reserved.
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License"); you
+ ~ may not use this file except in compliance with the License. You may
+ ~ obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ ~ implied. See the License for the specific language governing
+ ~ permissions and limitations under the License.
+ --%>
+<%@ page contentType='text/html;charset=UTF-8' language='java' %>
+<%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %>
+<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
+
+<html>
+ <link rel='stylesheet' href='/css/show_release.css'>
+ <%@ include file='header.jsp' %>
+ <body>
+ <div class='container'>
+
+ <div class="row">
+ <div class="col s12">
+ <h4 id="test-suite-section-header">Test Suites</h4>
+ </div>
+ </div>
+
+ <div class='row' id='test-suite-green-release-container'>
+ <div class="col s12">
+ <table class="bordered highlight">
+ <thead>
+ <tr>
+ <th>Branch</th>
+ <th>Target</th>
+ <th>Build ID</th>
+ <th>Suite Plan</th>
+ <th>System Fingerprint</th>
+ <th>Vendor Fingerprint</th>
+ </tr>
+ </thead>
+ <tbody>
+ <c:forEach var="testSuiteResultEntity" items="${testSuiteResultEntityList}">
+ <tr>
+ <td><c:out value="${testSuiteResultEntity.branch}"></c:out></td>
+ <td><c:out value="${testSuiteResultEntity.target}"></c:out></td>
+ <td><c:out value="${testSuiteResultEntity.buildId}"></c:out></td>
+ <td><c:out value="${testSuiteResultEntity.suitePlan}"></c:out></td>
+ <td><c:out value="${testSuiteResultEntity.buildSystemFingerprint}"></c:out></td>
+ <td><c:out value="${testSuiteResultEntity.buildVendorFingerprint}"></c:out></td>
+ </tr>
+ </c:forEach>
+ </tbody>
+ </table>
+ </div>
+ </div>
+
+ </div>
+ <%@ include file='footer.jsp' %>
+ </body>
+</html>