1
0
mirror of https://github.com/golang/go synced 2024-11-24 22:47:58 -07:00

misc/dashboard/codereview: fix tag nesting.

R=golang-dev, rsc, minux.ma
CC=golang-dev
https://golang.org/cl/6454062
This commit is contained in:
David Symonds 2012-07-30 11:37:20 +10:00
parent 3cc9d16792
commit 3fe5f3353f

View File

@ -244,8 +244,8 @@ var frontPage = template.Must(template.New("front").Funcs(template.FuncMap{
{{end}}
<td>
<a href="http://codereview.appspot.com/{{.Number}}/" title="{{ printf "%s" .Description}}">{{.Number}}: {{.FirstLineHTML}}</a>
{{if and .LGTMs $tbl.Assignable}}<br /><span style="font-size: smaller;">LGTMs: {{.LGTMHTML}}{{end}}</span>
{{if and .NotLGTMs $tbl.Assignable}}<br /><span style="font-size: smaller; color: #f74545;">NOT LGTMs: {{.NotLGTMHTML}}{{end}}</span>
{{if and .LGTMs $tbl.Assignable}}<br /><span style="font-size: smaller;">LGTMs: {{.LGTMHTML}}</span>{{end}}
{{if and .NotLGTMs $tbl.Assignable}}<br /><span style="font-size: smaller; color: #f74545;">NOT LGTMs: {{.NotLGTMHTML}}</span>{{end}}
</td>
<td title="Last modified">{{.ModifiedAgo}}</td>
{{if $.IsAdmin}}<td><a href="/update-cl?cl={{.Number}}" title="Update this CL">&#x27f3;</a></td>{{end}}