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

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

Issue 1924173003: [Findit] Fix urls in dashboard and result page and prevent duplicated culprits in dashboard. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 4 years, 7 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
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 {{analysis.build_number}} 75 {{analysis.build_number}}
76 </a> 76 </a>
77 </td> 77 </td>
78 <td>{{analysis.failure_type}}</td> 78 <td>{{analysis.failure_type}}</td>
79 <td>{{analysis.status_description}}</td> 79 <td>{{analysis.status_description}}</td>
80 <td> 80 <td>
81 {% if analysis.suspected_cls %} 81 {% if analysis.suspected_cls %}
82 {% for suspected_cl in analysis.suspected_cls %} 82 {% for suspected_cl in analysis.suspected_cls %}
83 <li> 83 <li>
84 {{suspected_cl.repo_name}}: 84 {{suspected_cl.repo_name}}:
85 {% if suspected_cl.url or suspected_cl.review_url %}
86 {% set review_url = suspected_cl.url or suspected_cl.review_ur l %}
87 {% else %}
88 {% set review_url = 'https://chromium.googlesource.com/chromiu m/src.git/+/' + suspected_cl.revision %}
89 {% endif %}
85 {% if suspected_cl.commit_position %} 90 {% if suspected_cl.commit_position %}
86 <a href="{{suspected_cl.url}}">{{suspected_cl.commit_position} }</a> 91 <a href="{{review_url}}">{{suspected_cl.commit_position}}</a>
87 {% else %} 92 {% else %}
88 <a href="{{suspected_cl.url}}">{{suspected_cl.revision}}</a> 93 <a href="{{review_url}}">{{suspected_cl.revision}}</a>
89 {% endif %} 94 {% endif %}
90 </li> 95 </li>
91 {% endfor %} 96 {% endfor %}
92 {% endif %} 97 {% endif %}
93 </td> 98 </td>
94 <td>{{analysis.result_status}}</td> 99 <td>{{analysis.result_status}}</td>
95 </tr> 100 </tr>
96 {% endfor %} 101 {% endfor %}
97 </tbody> 102 </tbody>
98 </table> 103 </table>
99 </div> 104 </div>
100 </body> 105 </body>
OLDNEW
« no previous file with comments | « appengine/findit/templates/build_failure.html ('k') | appengine/findit/templates/waterfall/compile_failure.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698