summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/pages
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-09-03 05:59:39 +0200
committerDavid Lawrence <dkl@mozilla.com>2015-09-03 05:59:39 +0200
commita6c5ec6f935a9bd17e99f5b3190b1af9eb350018 (patch)
treeedf4fc7d162825f28a67fe555f42c21b841bb5d4 /extensions/BMO/template/en/default/pages
parent3cc9c7365577f62e1b7c0693225dffb6f153b92f (diff)
downloadbugzilla-a6c5ec6f935a9bd17e99f5b3190b1af9eb350018.tar.gz
bugzilla-a6c5ec6f935a9bd17e99f5b3190b1af9eb350018.tar.xz
Bug 1196508: Intern Request Metric Dashboard
Diffstat (limited to 'extensions/BMO/template/en/default/pages')
-rw-r--r--extensions/BMO/template/en/default/pages/internship_dashboard.html.tmpl50
-rw-r--r--extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl2
2 files changed, 51 insertions, 1 deletions
diff --git a/extensions/BMO/template/en/default/pages/internship_dashboard.html.tmpl b/extensions/BMO/template/en/default/pages/internship_dashboard.html.tmpl
new file mode 100644
index 000000000..d3571697d
--- /dev/null
+++ b/extensions/BMO/template/en/default/pages/internship_dashboard.html.tmpl
@@ -0,0 +1,50 @@
+[%# 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 = "Internship Dashboard"
+ style_urls = [ "extensions/BMO/web/styles/reports.css" ]
+ style = "#report td { vertical-align: top; }"
+%]
+
+<h1>Internship 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>Status</th>
+ <th>Hiring Manager</th>
+ <th>SCVP</th>
+ <th>Product Line</th>
+ <th>Business Need</th>
+ <th>Name</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.bug_status FILTER html %]</td>
+ <td>[% bug.hiring_manager FILTER html %]</td>
+ <td>[% bug.scvp FILTER html %]</td>
+ <td>[% bug.product_line FILTER html FILTER html %]</td>
+ <td>[% bug.business_need FILTER html FILTER html_line_break %]</td>
+ <td>[% bug.intern_name FILTER html FILTER html %]</td>
+ </tr>
+ [% END %]
+ </table>
+[% ELSE %]
+ <p>
+ No open intern requisitions.
+ </p>
+[% END %]
+
+[% INCLUDE global/footer.html.tmpl %]
diff --git a/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl b/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl
index 8eeae3b87..ef0704ae2 100644
--- a/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl
+++ b/extensions/BMO/template/en/default/pages/recruiting_dashboard.html.tmpl
@@ -13,7 +13,7 @@
style = "#report td { vertical-align: top; }"
%]
-<h1>Recuriting Dashboard</h1>
+<h1>Recruiting Dashboard</h1>
[% IF bugs.size %]
<table border="0" cellspacing="0" id="report" class="hover" width="100%">