From 8c5d6e253a72c941574165d2a9e147099ec7fb46 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Mon, 23 Jul 2012 18:14:02 -0400 Subject: Bug 771107 - List of attachments in attachment details screen does not distinguish obsolete attachments r=glob, a=LpSolit --- template/en/default/attachment/edit.html.tmpl | 13 ++++++++++--- template/en/default/filterexceptions.pl | 1 - 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'template/en') diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 2062e6d6c..67dcabd75 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -303,10 +303,17 @@
Attachments on [% "$terms.bug ${attachment.bug_id}" FILTER bug_link(attachment.bug_id) FILTER none %]: [% FOREACH a = attachments %] - [% IF a == attachment.id %] - [%+ a %] + [% IF a.isobsolete %] + + [% END %] + [% IF a.id == attachment.id %] + [%+ a.id FILTER html %] [% ELSE %] - [% a %] + [% a.id FILTER html %] + [% END %] + [% IF a.isobsolete %] + [% END %] [% " |" UNLESS loop.last() %] [% END %] diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index e3cfec8a2..5401772ea 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -304,7 +304,6 @@ 'attachment/edit.html.tmpl' => [ 'attachment.id', 'attachment.bug_id', - 'a', 'editable_or_hide', ], -- cgit v1.2.3-24-g4f1b