summaryrefslogtreecommitdiffstats
path: root/template/en/default/search/search-report-select.html.tmpl
blob: b7bf459ad5c36a23c245e0a53f32e7cfedda4c7d (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
[%# 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.
  #%]

[%# INTERFACE:
  # name: string. The name of the select block to output.
  # default.$name.0: string. The default value for the block, if any.
  #%]

[% PROCESS "global/field-descs.none.tmpl" %]

[% BLOCK select %]
  [% Hook.process('rep_fields', 'search/search-report-select.html.tmpl') %]

  <select name="[% name FILTER html %]">
    <option value="">&lt;none&gt;</option>
    
    [% FOREACH field = report_columns.keys.sort %]
      [% NEXT IF field == "classification" AND !Param('useclassification') %]
      [% NEXT IF field == "target_milestone" AND !Param('usetargetmilestone') %]
      [% NEXT IF field == "qa_contact" AND !Param('useqacontact') %]
      <option value="[% field FILTER html %]" 
        [% " selected" IF default.$name.0 == field %]>
        [% field_descs.$field || field FILTER html %]</option>
    [% END %]

    [%# Single-select fields are also valid column names. %]
    [% FOREACH field = custom_fields %]
      <option value="[% field.name FILTER html %]"
        [% " selected" IF default.$name.0 == field.name %]>
        [% field.description FILTER html %]</option>
    [% END %]
  </select>
[% END %]