diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-07-24 00:14:02 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-07-24 00:14:02 +0200 |
commit | 8c5d6e253a72c941574165d2a9e147099ec7fb46 (patch) | |
tree | 90e1f286c7ad677e24ae757c3565eac5171db77c /template/en/default/attachment | |
parent | 9a63ac0764abca55f1b61a4c0719315002c02ac0 (diff) | |
download | bugzilla-8c5d6e253a72c941574165d2a9e147099ec7fb46.tar.gz bugzilla-8c5d6e253a72c941574165d2a9e147099ec7fb46.tar.xz |
Bug 771107 - List of attachments in attachment details screen does not distinguish obsolete attachments
r=glob, a=LpSolit
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 13 |
1 files changed, 10 insertions, 3 deletions
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 @@ <div id="attachment_list"> 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 %] + <span class="bz_obsolete"> + [% END %] + [% IF a.id == attachment.id %] + [%+ a.id FILTER html %] [% ELSE %] - <a href="attachment.cgi?id=[% a %]&action=edit">[% a %]</a> + <a href="attachment.cgi?id=[% a.id FILTER uri %]&action=edit" + title="[% a.description FILTER html %]">[% a.id FILTER html %]</a> + [% END %] + [% IF a.isobsolete %] + </span> [% END %] [% " |" UNLESS loop.last() %] [% END %] |