summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/pages/internship_dashboard.html.tmpl
blob: d3571697dee86809064434e54cce2e5172e52a81 (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
47
48
49
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 %]