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

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

Issue 2984003002: Milo: Change console commit text format (Closed)
Patch Set: Created 3 years, 5 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 | « no previous file | milo/frontend/view_console.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/frontend/appengine/templates/pages/console.html
diff --git a/milo/frontend/appengine/templates/pages/console.html b/milo/frontend/appengine/templates/pages/console.html
index 33896be6ab34242c8414f08226fce9831c0d30ae..bc8499116feb2937ee5a95e8d3e2fc2c936a9e28 100644
--- a/milo/frontend/appengine/templates/pages/console.html
+++ b/milo/frontend/appengine/templates/pages/console.html
@@ -5,6 +5,9 @@
th {
border: 1px silver;
}
+.commit {
+ font-weight: bold;
+}
</style>
{{end}}
@@ -19,8 +22,13 @@ th {
</thead>
{{ range $console.Commit }}
<tr>
+ <td>{{ .CommitTime | localTime "N/A" }}</td>
<td>
- {{ .Revision | linkify }}
+ <a href="{{.Revision.URL}}">
+ <span class="commit" title="{{.Description}}">
+ ({{ .AuthorEmail }})
+ </span>
+ </a>
</td>
{{ range .Build }}
{{ if . }}
« no previous file with comments | « no previous file | milo/frontend/view_console.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698