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

Side by Side Diff: appengine/findit/templates/list_analyses.html

Issue 1912483004: [Findit] Add failure type to dashboard. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 4 years, 8 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 | « appengine/findit/model/wf_analysis.py ('k') | no next file » | 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 <head> 2 <head>
3 <title>Build Analyses</title> 3 <title>Build Analyses</title>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="/common.css"> 5 <link rel="stylesheet" href="/common.css">
6 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script> 6 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script>
7 <script> 7 <script>
8 parameters = { 8 parameters = {
9 'triage': '{{triage}}' == '-1' ? undefined : '{{triage}}', 9 'triage': '{{triage}}' == '-1' ? undefined : '{{triage}}',
10 'days': '{{days}}' == '-1' ? undefined : '{{days}}', 10 'days': '{{days}}' == '-1' ? undefined : '{{days}}',
(...skipping 29 matching lines...) Expand all
40 </script> 40 </script>
41 </head> 41 </head>
42 <body> 42 <body>
43 <b>Builds and Analysis Results:</b> 43 <b>Builds and Analysis Results:</b>
44 <div id="builds"> 44 <div id="builds">
45 <table> 45 <table>
46 <tr> 46 <tr>
47 <th></th> 47 <th></th>
48 <th>Build Start Time</th> 48 <th>Build Start Time</th>
49 <th>Build</th> 49 <th>Build</th>
50 <th>Failure Type</th>
50 <th>Status</th> 51 <th>Status</th>
51 <th>Suspected CLs</th> 52 <th>Suspected CLs</th>
52 <th> 53 <th>
53 <select id="result_status"> 54 <select id="result_status">
54 <option value="default">Result Status</option> 55 <option value="default">Result Status</option>
55 <option value="0">Correct - Found</option> 56 <option value="0">Correct - Found</option>
56 <option value="10">Incorrect - Found</option> 57 <option value="10">Incorrect - Found</option>
57 <option value="20">Incorrect - Not Found</option> 58 <option value="20">Incorrect - Not Found</option>
58 <option value="30">Untriaged - Found</option> 59 <option value="30">Untriaged - Found</option>
59 <option value="40">Untriaged - Not Found</option> 60 <option value="40">Untriaged - Not Found</option>
60 <option value="50">Correct - Not Found</option> 61 <option value="50">Correct - Not Found</option>
61 </select> 62 </select>
62 </th> 63 </th>
63 </tr> 64 </tr>
64 65
65 <tbody> 66 <tbody>
66 {% for analysis in analyses %} 67 {% for analysis in analyses %}
67 <tr> 68 <tr>
68 <td>{{loop.index}}</td> 69 <td>{{loop.index}}</td>
69 <td>{{analysis.build_start_time}}</td> 70 <td>{{analysis.build_start_time}}</td>
70 <td>{{analysis.master_name}}, {{analysis.builder_name}}, 71 <td>{{analysis.master_name}}, {{analysis.builder_name}},
71 <a href="/waterfall/build-failure?url=https://build.chromium.org/p 72 <a href="/waterfall/build-failure?url=https://build.chromium.org/p
72 /{{analysis.master_name}}/builders/{{analysis.builder_name}} 73 /{{analysis.master_name}}/builders/{{analysis.builder_name}}
73 /builds/{{analysis.build_number}}"> 74 /builds/{{analysis.build_number}}">
74 {{analysis.build_number}} 75 {{analysis.build_number}}
75 </a> 76 </a>
76 </td> 77 </td>
78 <td>{{analysis.failure_type}}</td>
77 <td>{{analysis.status_description}}</td> 79 <td>{{analysis.status_description}}</td>
78 <td> 80 <td>
79 {% if analysis.suspected_cls %} 81 {% if analysis.suspected_cls %}
80 {% for suspected_cl in analysis.suspected_cls %} 82 {% for suspected_cl in analysis.suspected_cls %}
81 <li> 83 <li>
82 {{suspected_cl.repo_name}}: 84 {{suspected_cl.repo_name}}:
83 {% if suspected_cl.commit_position %} 85 {% if suspected_cl.commit_position %}
84 <a href="{{suspected_cl.url}}">{{suspected_cl.commit_position} }</a> 86 <a href="{{suspected_cl.url}}">{{suspected_cl.commit_position} }</a>
85 {% else %} 87 {% else %}
86 <a href="{{suspected_cl.url}}">{{suspected_cl.revision}}</a> 88 <a href="{{suspected_cl.url}}">{{suspected_cl.revision}}</a>
87 {% endif %} 89 {% endif %}
88 </li> 90 </li>
89 {% endfor %} 91 {% endfor %}
90 {% endif %} 92 {% endif %}
91 </td> 93 </td>
92 <td>{{analysis.result_status}}</td> 94 <td>{{analysis.result_status}}</td>
93 </tr> 95 </tr>
94 {% endfor %} 96 {% endfor %}
95 </tbody> 97 </tbody>
96 </table> 98 </table>
97 </div> 99 </div>
98 </body> 100 </body>
OLDNEW
« no previous file with comments | « appengine/findit/model/wf_analysis.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698