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/admin.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/admin.html')
| -rw-r--r-- | dashboard/app/admin.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dashboard/app/admin.html b/dashboard/app/admin.html index 09fd67513..edbdc9f7e 100644 --- a/dashboard/app/admin.html +++ b/dashboard/app/admin.html @@ -26,6 +26,7 @@ Main page. <table class="list_table"> <caption id="jobs"><a class="plain" href="#jobs">Recent jobs:</a></caption> + <thead> <tr> <th>Bug</th> <th>Created</th> @@ -36,6 +37,8 @@ Main page. <th>Manager</th> <th>Result</th> </tr> + </thead> + <tbody> {{range $job := $.Jobs}} <tr> <td class="title"><a href="{{$job.BugLink}}">{{$job.BugTitle}}</a></td> @@ -74,6 +77,7 @@ Main page. </td> </tr> {{end}} + </tbody> </table> <br><br> </body> |
