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

Unified Diff: appengine/findit/templates/build_failure.html

Issue 2398903002: [Findit] Display confidence score on result page. (Closed)
Patch Set: . Created 4 years, 2 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/model/test/suspected_cl_confidence_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/templates/build_failure.html
diff --git a/appengine/findit/templates/build_failure.html b/appengine/findit/templates/build_failure.html
index 8218fe9f17048c0ad5851628b84caac26e9269cc..8adbe89b4d572f41aae01f6d6ace761c6dd25cc4 100644
--- a/appengine/findit/templates/build_failure.html
+++ b/appengine/findit/templates/build_failure.html
@@ -245,9 +245,11 @@
{% if suspected_cls %}
<b>Feedback on Findit result:</b>
<table>
+ <tr><th>CL</th><th>Confidence</th><th>Feedback</th></tr>
{% for suspected_cl in suspected_cls %}
<tr>
- <td>{{suspected_cl.repo_name}}&nbsp;<a href="{{suspected_cl.url}}">{{ suspected_cl.commit_position or suspected_cl.revision}}</a></td>
+ <td>{{ suspected_cl.repo_name }}&nbsp;<a href="{{ suspected_cl.url }}">{{ suspected_cl.commit_position or suspected_cl.revision }}</a></td>
+ <td>{{ suspected_cl.confidence }}</td>
<td>
{% set cl_info = suspected_cl.repo_name + '/' + suspected_cl.revision %}
{% if suspected_cl.status == 0 %}
« no previous file with comments | « appengine/findit/model/test/suspected_cl_confidence_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698