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

Side by Side Diff: appengine/chromium_try_flakes/templates/all_flake_occurrences.html

Issue 1950053002: Deprecate bug-friendly feature (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
« no previous file with comments | « appengine/chromium_try_flakes/handlers/all_flake_occurrences.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 2
3 <table> 3 <table>
4 <tr> 4 <tr>
5 <td colspan="4">All flaky occurrences of <b>{{flake.name}}</b>.</td> 5 <td colspan="4">All flaky occurrences of <b>{{flake.name}}</b>.</td>
6 </tr> 6 </tr>
7 7
8 {% if not bug_friendly %}
9 <tr> 8 <tr>
10 <td colspan="4"> 9 <td colspan="4">
11 <form action="/override_issue_id" method="GET"> 10 <form action="/override_issue_id" method="GET">
12 Current Issue ID where new flakes are reported: 11 Current Issue ID where new flakes are reported:
13 <input type="hidden" name="key" value="{{flake.key.urlsafe}}"/> 12 <input type="hidden" name="key" value="{{flake.key.urlsafe}}"/>
14 <input type="text" name="issue_id" value="{{flake.issue_id}}"/> 13 <input type="text" name="issue_id" value="{{flake.issue_id}}"/>
15 <input type="submit" value="Override"/> (set to 0 to have new bug automatically created) 14 <input type="submit" value="Override"/> (set to 0 to have new bug automatically created)
16 </form> 15 </form>
17 </tr> 16 </tr>
18 17
19 <tr> 18 <tr>
20 <td>&nbsp;</td> 19 <td>&nbsp;</td>
21 </tr> 20 </tr>
22 {% endif %}
23 21
24 {% for failure_runs in grouped_runs %} 22 {% for failure_runs in grouped_runs %}
25 {% for f in failure_runs %} 23 {% for f in failure_runs %}
26 <tr> 24 <tr>
27 25
28 {% if not bug_friendly %}
29 <td><a href="{{f.url}}">try run at {{f.formatted_time}}</a></td> 26 <td><a href="{{f.url}}">try run at {{f.formatted_time}}</a></td>
30 <td><a href="{{f.patchset_url}}">patchset</a></td> 27 <td><a href="{{f.patchset_url}}">patchset</a></td>
31 <td>{{f.builder}} </td> 28 <td>{{f.builder}} </td>
32 <td> 29 <td>
33 {% if f.issue_ids %} 30 {% if f.issue_ids %}
34 (reported in <!-- 31 (reported in <!--
35 -->{% for issue_id in f.issue_ids %}<!-- 32 -->{% for issue_id in f.issue_ids %}<!--
36 --><a href="https://crbug.com/{{issue_id}}">{{issue_id}}</a><!-- 33 --><a href="https://crbug.com/{{issue_id}}">{{issue_id}}</a><!--
37 -->{% endfor %}<!-- 34 -->{% endfor %}<!--
38 -->) 35 -->)
39 {% endif %} 36 {% endif %}
40 </td> 37 </td>
41 {% else %}
42 <td><a href="{{f.url}}">{{f.url}}</a></td>
43 {% endif %}
44 38
45 </tr> 39 </tr>
46 {% endfor %} 40 {% endfor %}
47 41
48 <tr> 42 <tr>
49 <td>&nbsp;</td> 43 <td>&nbsp;</td>
50 </tr> 44 </tr>
51 45
52 {% endfor %} 46 {% endfor %}
53 47
54 </table> 48 </table>
55 {% if not bug_friendly %}
56 <a href="/all_flake_occurrences?key={{flake.key.urlsafe}}&bug_friendly=1">
57 bug friendly
58 </a>
59 {% endif %}
OLDNEW
« no previous file with comments | « appengine/chromium_try_flakes/handlers/all_flake_occurrences.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698