diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-04-05 17:59:52 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-04-08 14:32:32 +0200 |
| commit | 3ef496b7ba14f5099f3d09f9da0e931411c2afc0 (patch) | |
| tree | a8be358be459834235232c96bbb6bdd9d0a2e1ba /dashboard/app/bug.html | |
| parent | c34fde03ec2b778c7cb3f4463dac2e6b9c7934c9 (diff) | |
dashboard/app: split dashboard per-namespace
We now have too many namespaces and bugs.
Main page takes infinity to load.
Also almost nobody is interested in more than 1 namespace.
So split main page per-namespaces.
Diffstat (limited to 'dashboard/app/bug.html')
| -rw-r--r-- | dashboard/app/bug.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dashboard/app/bug.html b/dashboard/app/bug.html index ab32d8e54..6bbf30fc7 100644 --- a/dashboard/app/bug.html +++ b/dashboard/app/bug.html @@ -14,7 +14,7 @@ Page with details about a single bug. <body> {{template "header" .Header}} - <b>[{{.Bug.Namespace}}] {{.Bug.Title}}</b><br> + <b>{{.Bug.Title}}</b><br> Status: {{if .Bug.ExternalLink}}<a href="{{.Bug.ExternalLink}}">{{.Bug.Status}}</a>{{else}}{{.Bug.Status}}{{end}}<br> Reported-by: {{.Bug.CreditEmail}}<br> {{if .Bug.Commits}} @@ -71,6 +71,7 @@ Page with details about a single bug. <table class="list_table"> <caption>All crashes ({{.Bug.NumCrashes}}):</caption> + <thead> <tr> <th><a onclick="return sortTable(this, 'Manager', textSort)" href="#">Manager</a></th> <th><a onclick="return sortTable(this, 'Time', textSort, true)" href="#">Time</a></th> @@ -86,6 +87,8 @@ Page with details about a single bug. <th><a onclick="return sortTable(this, 'Maintainers', textSort)" href="#">Maintainers</a></th> {{end}} </tr> + </thead> + <tbody> {{range $c := $.Crashes}} <tr> <td class="manager">{{$c.Manager}}</td> @@ -104,6 +107,7 @@ Page with details about a single bug. {{end}} </tr> {{end}} + </tbody> </table> </body> </html> |
