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

Side by Side Diff: dashboard/dashboard/templates/bad_bisect.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « dashboard/dashboard/start_try_job_test.py ('k') | dashboard/queue.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> 4 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
5 <link rel="import" href="/components/paper-button/paper-button.html">
5 <link rel="import" href="/dashboard/elements/nav-bar.html"> 6 <link rel="import" href="/dashboard/elements/nav-bar.html">
6 <link rel="import" href="/dashboard/elements/primary-button.html">
7 <style> 7 <style>
8 a { 8 a {
9 text-decoration: none; 9 text-decoration: none;
10 } 10 }
11 paper-button {
12 background: #4285f4;
13 color: #fff;
14 }
11 </style> 15 </style>
12 </head> 16 </head>
13 <body> 17 <body>
14 <nav-bar></nav-bar> 18 <nav-bar></nav-bar>
15 19
16 <form action="/bad_bisect" method="POST"> 20 <form action="/bad_bisect" id="bisect_form" method="POST">
17 {{xsrf_input|safe}} 21 {{xsrf_input|safe}}
18 <input type="hidden" name="try_job_id" value="{{try_job_id}}"> 22 <input type="hidden" name="try_job_id" value="{{try_job_id}}">
19 <p> 23 <p>
20 <button class="mini" type="submit" is="primary-button"> 24 <paper-button onclick="document.getElementById('bisect_form').submit()">Co nfirm</paper-button>
21 Confirm</button>
22 that bisect job <a href="#">{{try_job_id}}</a> is incorrect. 25 that bisect job <a href="#">{{try_job_id}}</a> is incorrect.
23 </p> 26 </p>
24 </form> 27 </form>
25 28
26 </body> 29 </body>
27 </html> 30 </html>
OLDNEW
« no previous file with comments | « dashboard/dashboard/start_try_job_test.py ('k') | dashboard/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698