Commit 33c16a89 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1097798: Do not display the resolution in the dependency tree for open…

Bug 1097798: Do not display the resolution in the dependency tree for open bugs, nor the target milestone if usetargetmilestone is off r=dkl a=glob
parent f43045df
......@@ -152,9 +152,12 @@
[% END %]
[% BLOCK buginfo %]
[% display_value("bug_status", bug.bug_status) FILTER html -%] [%+ display_value("resolution", bug.resolution) FILTER html %];
[% display_value("bug_status", bug.bug_status) FILTER html -%]
[%- IF bug.resolution %] [%+ display_value("resolution", bug.resolution) FILTER html %][% END %];
[%-%] assigned to [% bug.assigned_to.login FILTER email FILTER html %]
[%-%][% "; Target: " _ bug.target_milestone IF bug.target_milestone %]
[% IF Param("usetargetmilestone") AND bug.target_milestone %]
[%-%]; target: [% bug.target_milestone FILTER html %]
[% END %]
[% END %]
[%###########################################################################%]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment