Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Unified Diff: appengine/findit/templates/flake/dashboard.html

Issue 2195473002: [Findit] Dashboards and graph for regression range (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: addressed comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/main.py ('k') | appengine/findit/templates/flake/result.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/templates/flake/dashboard.html
diff --git a/appengine/findit/templates/flake/dashboard.html b/appengine/findit/templates/flake/dashboard.html
new file mode 100644
index 0000000000000000000000000000000000000000..d8b469aeb880c1f66349371eab9e74df1968bcff
--- /dev/null
+++ b/appengine/findit/templates/flake/dashboard.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<head>
+ <title>Flake Dashboard</title>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="/common.css">
+</head>
+<body>
+<h1> Flake Dashboard </h1>
+<table>
+<tr>
+ <th>Master Name</th>
+ <th>Builder Name</th>
+ <th>Build Number</th>
+ <th>Step Name</th>
+ <th>Test Name</th>
+ <th>Graph</th>
+</tr>
+<tbody>
+{% for master_flake_analysis in master_flake_analyses %}
+<tr>
+<td> {{master_flake_analysis.master_name}} </td>
+<td> {{master_flake_analysis.builder_name}}</td>
+<td> {{master_flake_analysis.build_number}}</td>
+<td> {{master_flake_analysis.step_name}}</td>
+<td> {{master_flake_analysis.test_name}}</td>
+
+<td>
+<form method="get" action="/waterfall/check-flake">
+ <input type="hidden" name="master_name" value="{{master_flake_analysis.master_name}}">
+ <input type="hidden" name="builder_name" value="{{master_flake_analysis.builder_name}}">
+ <input type="hidden" name="build_number" value="{{master_flake_analysis.build_number}}">
+ <input type="hidden" name="step_name" value="{{master_flake_analysis.step_name}}">
+ <input type="hidden" name="test_name" value="{{master_flake_analysis.test_name}}">
+<input type="submit" value="View">
+</td>
+</tr>
+{% endfor %}
+</tbody>
+</table>
+</body>
« no previous file with comments | « appengine/findit/main.py ('k') | appengine/findit/templates/flake/result.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698