summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/pages
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-03-03 06:50:39 +0100
committerByron Jones <glob@mozilla.com>2015-03-03 06:50:39 +0100
commit6bf2ddd3372a68c24fd6576421a4df28877c2de2 (patch)
treed05443b680d58ec9780d74f07dfd53e931774f85 /extensions/BMO/template/en/default/pages
parent18f29b25e8a0d40b3d5229c526fb59a5f545f052 (diff)
downloadbugzilla-6bf2ddd3372a68c24fd6576421a4df28877c2de2.tar.gz
bugzilla-6bf2ddd3372a68c24fd6576421a4df28877c2de2.tar.xz
Bug 1134765: Report for recruiting data
Diffstat (limited to 'extensions/BMO/template/en/default/pages')
-rw-r--r--extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl46
1 files changed, 46 insertions, 0 deletions
diff --git a/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl b/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl
new file mode 100644
index 000000000..8eeae3b87
--- /dev/null
+++ b/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl
@@ -0,0 +1,46 @@
+[%# 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 %]
+[% INCLUDE global/header.html.tmpl
+ title = "Recruiting Dashboard"
+ style_urls = [ "extensions/BMO/web/styles/reports.css" ]
+ style = "#report td { vertical-align: top; }"
+%]
+
+<h1>Recuriting Dashboard</h1>
+
+[% IF bugs.size %]
+ <table border="0" cellspacing="0" id="report" class="hover" width="100%">
+ <tr id="report-header">
+ <th>[% terms.Bug %]</th>
+ <th>Summary</th>
+ <th>Hiring Manager</th>
+ <th>SCVP</th>
+ <th>Part of Strategic Plan</th>
+ <th>Why is this critical for success</th>
+ </tr>
+
+ [% FOREACH bug = bugs %]
+ <tr class="report_item [% loop.count % 2 == 1 ? "report_row_odd" : "report_row_even" %]">
+ <td>[% bug.id FILTER bug_link(bug) FILTER none %]</td>
+ <td>[% bug.short_desc FILTER html %]</td>
+ <td>[% bug.hiring_manager FILTER html %]</td>
+ <td>[% bug.scvp FILTER html %]</td>
+ <td>[% bug.strategic_plan FILTER html FILTER html_line_break %]</td>
+ <td>[% bug.why_critical FILTER html FILTER html_line_break %]</td>
+ </tr>
+ [% END %]
+ </table>
+[% ELSE %]
+ <p>
+ No open recruiting requisitions.
+ </p>
+[% END %]
+
+[% INCLUDE global/footer.html.tmpl %]