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

Unified Diff: appengine/chromium_try_flakes/templates/index.html

Issue 1950083002: Load only a few flakes on the index page and inline link to load more (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/chromium_try_flakes/handlers/index.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/chromium_try_flakes/templates/index.html
diff --git a/appengine/chromium_try_flakes/templates/index.html b/appengine/chromium_try_flakes/templates/index.html
index 0ad915ad1892a8ffaac91346deb8f54dfe491a90..527d31a3a35017fc36d69b31a7c2b38e75c67c68 100644
--- a/appengine/chromium_try_flakes/templates/index.html
+++ b/appengine/chromium_try_flakes/templates/index.html
@@ -69,16 +69,22 @@ try run for the same patchset.
onblur="PostComment('step_comment_{{forloop.counter}}')">
</td>
</tr>
+
{% for o in f.filtered_occurrences %}
<tr>
<td><a href="{{o.getURL}}">try run at {{o.formatted_time}} UTC</a></td>
<td><a href="{{o.patchset_url}}">patchset</a></td>
<td>{{o.builder}} </td>
-
</tr>
{% endfor %}
-</tr><tr><td>&nbsp;</td></tr>
+{% if f.more_occurrences %}
+<tr><td colspan="3">
+<a href="/all_flake_occurrences?key={{f.key.urlsafe}}">more occurrences</a>
+</td></tr>
+{% endif %}
+
+<tr><td>&nbsp;</td></tr>
{% endfor %}
</table>
« no previous file with comments | « appengine/chromium_try_flakes/handlers/index.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698