blob: ef0704ae28b2a0dfc56c9051ba3251918604f303 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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>Recruiting 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 %]
|