Commit e8edf84d authored by David Symonds's avatar David Symonds

dashboard: tidy up 'top' link.

The previous link worked, but was unnecessary and had a trailing "}".

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5674068
parent edf1c038
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
} }
.build .hash { .build .hash {
font-family: monospace; font-family: monospace;
font-size: 9pt; font-size: 9pt;
} }
.build .result { .build .result {
text-align: center; text-align: center;
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
<div class="paginate"> <div class="paginate">
<a {{if .HasPrev}}href="?page={{.Prev}}"{{else}}class="inactive"{{end}}>prev</a> <a {{if .HasPrev}}href="?page={{.Prev}}"{{else}}class="inactive"{{end}}>prev</a>
<a {{if .Next}}href="?page={{.Next}}"{{else}}class="inactive"{{end}}>next</a> <a {{if .Next}}href="?page={{.Next}}"{{else}}class="inactive"{{end}}>next</a>
<a {{if .HasPrev}}href="?page=0}"{{else}}class="inactive"{{end}}>top</a> <a {{if .HasPrev}}href="."{{else}}class="inactive"{{end}}>top</a>
</div> </div>
{{end}} {{end}}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment