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

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

Issue 1945903004: Add show-all feature to the all-flake-occurrences page (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@deprecate_bug_friendly
Patch Set: Addressed comments 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/templates/all_flake_occurrences.html ('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 <style> 2 <style>
3 h1 { 3 h1 {
4 font-family: sans-serif; 4 font-family: sans-serif;
5 } 5 }
6 p { 6 p {
7 max-width: 800px; 7 max-width: 800px;
8 } 8 }
9 9
10 #range_search { 10 #range_search {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <br> 43 <br>
44 44
45 <table> 45 <table>
46 {% for f in flakes %} 46 {% for f in flakes %}
47 <tr> 47 <tr>
48 <td colspan="3"> 48 <td colspan="3">
49 <div style=" float: left"> 49 <div style=" float: left">
50 <span><b>{{f.name}}</b></span> 50 <span><b>{{f.name}}</b></span>
51 <small>( 51 <small>(
52 <a href="/all_flake_occurrences?key={{f.key.urlsafe}}"> 52 <a href="/all_flake_occurrences?key={{f.key.urlsafe}}">
53 all occurrences</a> 53 more occurrences</a>
54 {% if f.issue_id > 0 %} 54 {% if f.issue_id > 0 %}
55 , <a href="https://crbug.com/{{f.issue_id}}">latest bug</a> 55 , <a href="https://crbug.com/{{f.issue_id}}">latest bug</a>
56 {% endif %} 56 {% endif %}
57 ) 57 )
58 </small> 58 </small>
59 </div> 59 </div>
60 </td> 60 </td>
61 </tr> 61 </tr>
62 <tr> 62 <tr>
63 <td colspan="3"> 63 <td colspan="3">
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 var xhr = new XMLHttpRequest(); 121 var xhr = new XMLHttpRequest();
122 122
123 var data = new FormData(); 123 var data = new FormData();
124 data.append('key', key); 124 data.append('key', key);
125 data.append('comment', comment); 125 data.append('comment', comment);
126 xhr.open('POST', '/post_comment'); 126 xhr.open('POST', '/post_comment');
127 xhr.send(data); 127 xhr.send(data);
128 } 128 }
129 </script> 129 </script>
OLDNEW
« no previous file with comments | « appengine/chromium_try_flakes/templates/all_flake_occurrences.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698