summaryrefslogtreecommitdiffstats
path: root/extensions/ShadowBugs/template/en/default/hook/bug/edit-after_custom_fields.html.tmpl
blob: 8e8327ef28e854467d14efbfc3f2b18812afbb57 (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
[%# 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.
  #%]

[% RETURN IF Bugzilla.is_cf_shadow_bug_hidden(bug) %]
[% field = Bugzilla.process_cache.shadow_bug_field %]
[% shadowed_by = bug.related_bugs(field).pop %]
<tr>
  [% IF shadowed_by && user.can_see_bug(shadowed_by) %]
    <th class="field_label">
      [% field.reverse_desc FILTER html %]:
    </th>
    <td>
      [% shadowed_by.id FILTER bug_link(shadowed_by, use_alias => 1) FILTER none %][% " " %]
    </td>
  [% ELSE %]
    [% PROCESS bug/field.html.tmpl
        value      = bug.cf_shadow_bug
        editable   = bug.check_can_change_field(field.name, 0, 1)
        no_tds     = false
        value_span = 2 %]
  [% END %]
</tr>