summaryrefslogtreecommitdiffstats
path: root/template/en/default/attachment/show-multiple.html.tmpl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-10-24 07:11:04 +0200
committergerv%gerv.net <>2002-10-24 07:11:04 +0200
commitd99ef93e22808fba80bf3bec3c81d73d6d2003cc (patch)
treecaf1e4f2313624a199de0c0a07f0407e3ca51455 /template/en/default/attachment/show-multiple.html.tmpl
parent1bbdc386bdb1a32e8277dec182004c9acb682d27 (diff)
downloadbugzilla-d99ef93e22808fba80bf3bec3c81d73d6d2003cc.tar.gz
bugzilla-d99ef93e22808fba80bf3bec3c81d73d6d2003cc.tar.xz
Bug 172874 - cvs remove old attachstatus templates. "patch" by gerv; r=myk.
Diffstat (limited to 'template/en/default/attachment/show-multiple.html.tmpl')
-rw-r--r--template/en/default/attachment/show-multiple.html.tmpl96
1 files changed, 0 insertions, 96 deletions
diff --git a/template/en/default/attachment/show-multiple.html.tmpl b/template/en/default/attachment/show-multiple.html.tmpl
deleted file mode 100644
index 5e12f622e..000000000
--- a/template/en/default/attachment/show-multiple.html.tmpl
+++ /dev/null
@@ -1,96 +0,0 @@
-<!-- 1.0@bugzilla.org -->
-[%# The contents of this file are subject to the Mozilla Public
- # License Version 1.1 (the "License"); you may not use this file
- # except in compliance with the License. You may obtain a copy of
- # the License at http://www.mozilla.org/MPL/
- #
- # Software distributed under the License is distributed on an "AS
- # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- # implied. See the License for the specific language governing
- # rights and limitations under the License.
- #
- # The Original Code is the Bugzilla Bug Tracking System.
- #
- # The Initial Developer of the Original Code is Netscape Communications
- # Corporation. Portions created by Netscape are
- # Copyright (C) 1998 Netscape Communications Corporation. All
- # Rights Reserved.
- #
- # Contributor(s): Myk Melez <myk@mozilla.org>
- #%]
-
-[% filtered_summary = bugsummary FILTER html %]
-[% PROCESS global/header.html.tmpl
- title = "View All Attachments for Bug #$bugid"
- h1 = "View All Attachments for <a href=\"show_bug.cgi?id=$bugid\">Bug #$bugid</a>"
- h2 = filtered_summary
- style = "
- table.attachment_info th { text-align: right; vertical-align: top; }
- table.attachment_info td { text-align: left; vertical-align: top; }
- "
-%]
-
-<br>
-
-[% FOREACH a = attachments %]
-
- <div align="center">
- <table class="attachment_info" cellspacing="0" cellpadding="4" border="1" width="75%">
- <tr>
- <td valign="top" bgcolor="#cccccc" colspan="5">
- <big><b>Attachment #[% a.attachid %]</b></big>
- </td>
- </tr>
- <tr>
- <td valign="top">
- [% IF a.isobsolete %]
- <strike>[% a.description FILTER html %]</strike>
- [% ELSE %]
- [% a.description FILTER html %]
- [% END %]
- </td>
-
- <td valign="top">
- [% IF a.ispatch %]
- <i>patch</i>
- [% ELSE %]
- [% a.contenttype FILTER html %]
- [% END %]
- </td>
-
- <td valign="top">[% a.date %]</td>
-
- <td valign="top">
- [% IF a.statuses.size == 0 %]
- <i>none</i>
- [% ELSE %]
- [% FOREACH s = a.statuses %]
- [% s FILTER html FILTER replace('\s', '&nbsp;') %]<br>
- [% END %]
- [% END %]
- </td>
-
- <td valign="top">
- <a href="attachment.cgi?id=[% a.attachid %]&amp;action=edit">Edit</a>
- </td>
- </tr>
- </table>
-
- [% IF a.isviewable %]
- <iframe src="attachment.cgi?id=[% a.attachid %]&amp;action=view" width="75%" height="350">
- <b>You cannot view the attachment on this page because your browser does not support IFRAMEs.
- <a href="attachment.cgi?id=[% a.attachid %]&amp;action=view">View the attachment on a separate page</a>.</b>
- </iframe>
- [% ELSE %]
- <p><b>
- Attachment cannot be viewed because its MIME type is not text/*, image/*, or application/vnd.mozilla.*.
- <a href="attachment.cgi?id=[% a.attachid %]&amp;action=view">Download the attachment instead</a>.
- </b></p>
- [% END %]
- </div>
-
- <br><br>
-
-[% END %]
-
-[% PROCESS global/footer.html.tmpl %]