[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl
title = "My Dashboard"
style_urls = [ "skins/standard/buglist.css",
"js/yui/assets/skins/sam/paginator.css",
"extensions/MyDashboard/web/styles/mydashboard.css" ]
yui = [ "datatable", "paginator" ]
javascript_urls = [ "extensions/MyDashboard/web/js/mydashboard.js" ]
%]
[% standard_results = [] %]
[% saved_results = [] %]
[% FOREACH r = results %]
[% standard_results.push(r) IF !r.saved %]
[% saved_results.push(r) IF r.saved %]
[% END %]
[% FOREACH r = saved_results %]
-
[% r.heading FILTER html %]
[% ' | ' IF !loop.last() %]
[% END %]
[% IF NOT saved_results.size %]
- Click edit to add or remove saved searches from my dashboard
[% END %]
[% FOREACH r = standard_results %]
[% PROCESS query_results r = r %]
[% END %]
(back to top)
(back to top)
(back to top)
[% FOREACH r = saved_results %]
[% PROCESS query_results r = r %]
[% END %]
[% PROCESS global/footer.html.tmpl %]
[% BLOCK query_results %]
[% IF r.description %]
[% r.description FILTER html %]
[% END %]
[% r.bugs.size FILTER html %] [% terms.bugs %] found.
(show list)
(back to top)
ID |
Product |
Version |
Component |
Status |
Severity |
Summary |
[% FOREACH bug = r.bugs %]
[% bug.bug_id FILTER html %] |
[% bug.product FILTER html %] |
[% bug.version FILTER html %] |
[% bug.component FILTER html %] |
[% bug.bug_status FILTER html %] |
[% bug.bug_severity FILTER html %] |
[% bug.short_desc FILTER html %] |
[% END %]
[% END %]