| 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 . }}
|
|
|