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

Unified Diff: milo/appengine/frontend/templates/pages/build.html

Issue 2835193006: Milo: Add timestamp name and tooltip (Closed)
Patch Set: Review Created 3 years, 8 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 | « milo/appengine/frontend/templates/includes/base.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/templates/pages/build.html
diff --git a/milo/appengine/frontend/templates/pages/build.html b/milo/appengine/frontend/templates/pages/build.html
index ae6f756c20814a16ba667f4d738c7f11d86927e6..93b22a0163042f8ccccc2826f8e4a2f034d0a3e8 100644
--- a/milo/appengine/frontend/templates/pages/build.html
+++ b/milo/appengine/frontend/templates/pages/build.html
@@ -158,7 +158,11 @@
<div class="status-{{.Status}} result">
<b>Steps</b>
{{ if .Duration -}}
- <span style="float:right">( {{ .Duration | humanDuration }} )</span>
+ <span style="float:right"
+ class="duration"
+ data-starttime="{{ .Started | formatTime }}"
+ {{ if .Finished }}data-endtime="{{ .Finished | formatTime }}"{{ end }}>
+ ( {{ .Duration | humanDuration }} )</span>
{{- end }}
</div>
<ul>
@@ -175,7 +179,11 @@
<div class="status-{{.Status}} result">
<b>{{.Label}}</b>
{{ if .Duration -}}
- <span style="float:right">( {{ .Duration | humanDuration }} )</span>
+ <span style="float:right"
+ class="duration"
+ data-starttime="{{ .Started | formatTime }}"
+ {{ if .Finished }}data-endtime="{{ .Finished | formatTime }}"{{ end }}>
+ ( {{ .Duration | humanDuration }} )</span>
{{- end }}
<span>
{{ range .Text -}}
« no previous file with comments | « milo/appengine/frontend/templates/includes/base.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698