Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3a71865
dashboard/app/templates/templates.html: Commenting local .css file. I…
gc2lgno Aug 12, 2025
e6e0178
dasboard/app/tenplates/templates.html: Redesing of navbar
gc2lgno Aug 12, 2025
6b8dae1
Merge branch 'master' into master
gc2lgno Aug 18, 2025
fa595be
dashboard/app: Fixing MissingBackports count.
gc2lgno Aug 18, 2025
9f98412
Merge branch 'master' into master
gc2lgno Aug 19, 2025
38e3ae2
dashboard/app: Including Bootstrap JS inclusion and maintain common.j…
gc2lgno Aug 19, 2025
684b15e
app/dashboard: enhance bug list and manager list tables with Bootstra…
gc2lgno Aug 20, 2025
dd10b95
refactor: adjust main layout structure and remove unnecessary breaks
gc2lgno Aug 26, 2025
4284f45
dashboard/templates:Fixing second table styles. Covering last tables …
gc2lgno Aug 26, 2025
37c848b
Revert "dashboard/templates:Fixing second table styles. Covering last…
gc2lgno Aug 26, 2025
466e02e
dashboard/app: fix: improve bug list table layout and styling
gc2lgno Aug 26, 2025
d524dd8
dashboard/app: update table styles and enhance layout for better read…
gc2lgno Aug 26, 2025
99a754d
dashboard/app: Templates and main navbar adjust
gc2lgno Aug 27, 2025
8834cd8
Revert "dashboard/app: Templates and main navbar adjust"
gc2lgno Aug 27, 2025
14515b2
dashboard/app: Moving header to main.html
gc2lgno Sep 1, 2025
4411322
dashboard/app: Invoking main/header on templates
gc2lgno Sep 1, 2025
ef8c3e8
dashboard/app: Fix template invocation for header in templates.html
gc2lgno Sep 1, 2025
ec11e44
dashobard/app: Refactor templates: restructure main layout and header…
gc2lgno Sep 3, 2025
7e70a74
dashboard/app: Update template glob to include layouts and partials f…
gc2lgno Sep 3, 2025
62b84be
Update template glob to include all HTML files for improved flexibility
gc2lgno Sep 3, 2025
3455d39
dashboard/app: Improve glob validation and update comments for clarity
gc2lgno Sep 3, 2025
325ec25
Revert "dashboard/app: Improve glob validation and update comments fo…
gc2lgno Sep 3, 2025
1564022
Revert "Update template glob to include all HTML files for improved f…
gc2lgno Sep 3, 2025
63b16e2
Revert "dashboard/app: Update template glob to include layouts and pa…
gc2lgno Sep 3, 2025
33cdc00
Revert "dashobard/app: Refactor templates: restructure main layout an…
gc2lgno Sep 3, 2025
9a0d3a0
dashboard/app: Implement base layout and header components for improv…
gc2lgno Sep 3, 2025
113487b
dashboard/app: Remove footer template inclusion from base layout for …
gc2lgno Sep 3, 2025
fbcf874
Revert "dashboard/app: Remove footer template inclusion from base lay…
gc2lgno Sep 16, 2025
bd5b626
Revert "dashboard/app: Implement base layout and header components fo…
gc2lgno Sep 16, 2025
702b93e
Revert "dashboard/app: Fix template invocation for header in template…
gc2lgno Sep 23, 2025
7ea412c
Revert "dashboard/app: Invoking main/header on templates"
gc2lgno Sep 23, 2025
dddcca2
Revert "dashboard/app: Moving header to main.html"
gc2lgno Sep 23, 2025
e8b5a5d
Dashboard app: Removing container class from rows.
gc2lgno Sep 23, 2025
44eec67
Dashboard: Templates: Fixing line 313. "tested repos" jumped line
gc2lgno Sep 23, 2025
73adb88
Dashboard: Templates: Recovering jumped lines due Formatting Document
gc2lgno Sep 23, 2025
6489253
Dashboard: Templates: Fixing formatting issue in bisection links
gc2lgno Sep 23, 2025
cc1feb6
Dashboard: Templates: Changing container class to row for better layout
gc2lgno Sep 23, 2025
c3bec5d
Dashboard: Templates: Refactoring: Removing <main> from templates.ht…
gc2lgno Sep 26, 2025
cbcef1d
Dashboard: Templates: Adding caption-top class to manager list table …
gc2lgno Sep 29, 2025
86d4fba
Dashboard: Templates: Intance Repolink, alternate method to render.
gc2lgno Sep 29, 2025
a1b9a33
Dashboard: Templates/main: Adding justify-content-start class to main…
gc2lgno Sep 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions dashboard/app/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,24 @@

<!doctype html>
<html>

<head>
{{template "head" .Header}}
<title>syzbot</title>
</head>

<body>
{{template "header" .Header}}
{{if $.Decommissioned}}<h1>This kernel is DECOMMISSIONED</h1>{{end}}
{{if or (not $.BugFilter.Filter.Any) ($.BugFilter.Filter.ManagerName)}}
<main class="container justify-content-start" style="margin-top: 80px;">
{{if $.Decommissioned}}<h1>This kernel is DECOMMISSIONED</h1>{{end}}
{{if or (not $.BugFilter.Filter.Any) ($.BugFilter.Filter.ManagerName)}}
{{template "manager_list" $.Managers}}
{{end}}
{{template "bug_filter" $.BugFilter}}
{{range $group := $.Groups}}
{{end}}
{{template "bug_filter" $.BugFilter}}
{{range $group := $.Groups}}
{{template "bug_list" $group}}
{{end}}
{{end}}
</main>
</body>
</html>

</html>
Loading