knob.html.tmpl 3.44 KB
Newer Older
1 2 3
[%# 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/.
4
  #
5 6
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
7 8
  #%]

9
<div id="status">
Frédéric Buclin's avatar
Frédéric Buclin committed
10
  [% PROCESS bug/field.html.tmpl
11 12 13 14 15 16
      no_tds = 1
      field  = bug_fields.bug_status
      value  = bug.bug_status
      override_legal_values = bug.choices.bug_status
      editable = bug.choices.bug_status.size > 1
  %]
17

18 19 20 21
  [% IF bug.resolution 
        OR bug.check_can_change_field('resolution', bug.resolution, 1)
  %]
    <noscript><br>resolved&nbsp;as&nbsp;</noscript>
22
  [% END %]
23

24
  <span id="resolution_settings">
Frédéric Buclin's avatar
Frédéric Buclin committed
25
  [% PROCESS bug/field.html.tmpl
26 27 28 29 30 31 32 33 34
      no_tds = 1
      field  = bug_fields.resolution
      value  = bug.resolution
      override_legal_values = bug.choices.resolution
      editable = bug.check_can_change_field('resolution', bug.resolution, 1)
  %]
  </span>

  [% IF bug.check_can_change_field('dup_id', 0, 1) %]
35
    <noscript><br> duplicate</noscript>
36
    <span id="duplicate_settings">of
37 38 39 40 41 42 43
      <span id="dup_id_container" class="bz_default_hidden">
        [% "${terms.bug} ${bug.dup_id}" FILTER bug_link(bug.dup_id) FILTER none %]
        (<a href="#" id="dup_id_edit_action">edit</a>)
      </span
      ><input id="dup_id" name="dup_id" size="6"
              value="[% bug.dup_id FILTER html %]">
    </span>
44 45 46
    [% IF bug.dup_id %]
        <noscript>[% bug.dup_id FILTER bug_link(bug.dup_id) FILTER none %]</noscript>
    [% END %]
47 48 49
    <div id="dup_id_discoverable" class="bz_default_hidden">
      <a href="#" id="dup_id_discoverable_action">Mark as Duplicate</a>
    </div>
50 51 52 53
  [% ELSIF bug.dup_id %]
    <noscript><br> duplicate</noscript>
    <span id="duplicate_display">of 
      [% "${terms.bug} ${bug.dup_id}" FILTER bug_link(bug.dup_id) FILTER none %]</span>
54
  [% END %]
55
</div>
56

57
<script type="text/javascript">
58 59 60 61 62 63
  var close_status_array = [
    [% FOREACH status = bug.choices.bug_status %]
      [% NEXT IF status.is_open %]
      '[% status.name FILTER js %]'[% ',' UNLESS loop.last %]
    [% END %]
  ];
64
  YAHOO.util.Dom.removeClass('dup_id_discoverable', 'bz_default_hidden');
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  hideEditableField( "dup_id_container", "dup_id", 'dup_id_edit_action',
                     'dup_id', '[% bug.dup_id FILTER js %]' )
  showHideStatusItems( "",  ['[% "is_duplicate" IF bug.dup_id %]',
                             '[% bug.bug_status FILTER js %]']);
  YAHOO.util.Event.addListener( 'bug_status', "change", showHideStatusItems,
                                ['[% "is_duplicate" IF bug.dup_id %]',
                                 '[% bug.bug_status FILTER js %]']);
  YAHOO.util.Event.addListener( 'resolution', "change", showDuplicateItem);
  YAHOO.util.Event.addListener( 'dup_id_discoverable_action',
                                'click',
                                setResolutionToDuplicate,
                                '[% Param('duplicate_or_move_bug_status')
                                                                FILTER js %]');
  YAHOO.util.Event.addListener( window, 'load',  showHideStatusItems,
                              ['[% "is_duplicate" IF bug.dup_id %]',
                               '[% bug.bug_status FILTER js %]'] );
81

82 83
  [% INCLUDE "bug/field-events.js.tmpl" field = select_fields.bug_status %]
  [% INCLUDE "bug/field-events.js.tmpl" field = select_fields.resolution %]
84
</script>