diff options
author | myk%mozilla.org <> | 2004-02-06 03:14:01 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2004-02-06 03:14:01 +0100 |
commit | 0b01a89cc8901ad0217455563c58b26c10f6dad7 (patch) | |
tree | cfe49edaeff34420a1f8f1747002d16ed6baf550 /template | |
parent | 038bb59e90b8e253e8b61a219c606638f63855c6 (diff) | |
download | bugzilla-0b01a89cc8901ad0217455563c58b26c10f6dad7.tar.gz bugzilla-0b01a89cc8901ad0217455563c58b26c10f6dad7.tar.xz |
Fix for bug 127995: shows the size of attachments in the show bug and attachment interfaces.
Patch by Dave Swegen <dswegen@software.plasmon.com>
r=myk
a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/attachment/list.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/attachment/show-multiple.html.tmpl | 3 |
3 files changed, 6 insertions, 2 deletions
diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 671842152..19cc06550 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -211,6 +211,7 @@ <b>Filename:</b><br> <input type="text" size="20" name="filename" value="[% filename FILTER html %]"><br> + <b>Size: </b>[% datasize FILTER unitconvert %]<br> <b>MIME Type:</b><br> <input type="text" size="20" name="contenttypeentry" value="[% contenttype FILTER html %]"><br> diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 407ef8dfb..1ef6cab12 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -25,6 +25,7 @@ <th bgcolor="#cccccc" align="left">Attachment</th> <th bgcolor="#cccccc" align="left">Type</th> <th bgcolor="#cccccc" align="left">Created</th> + <th bgcolor="#cccccc" align="left">Size</th> [% IF show_attachment_flags %] <th bgcolor="#cccccc" align="left">Flags</th> [% END %] @@ -47,6 +48,7 @@ </td> <td valign="top">[% attachment.date FILTER time %]</td> + <td valign="top">[% attachment.datasize FILTER unitconvert %]</td> [% IF show_attachment_flags %] <td valign="top"> @@ -82,7 +84,7 @@ [% END %] <tr> - <td colspan="[% show_attachment_flags ? 4 : 3 %]"> + <td colspan="[% show_attachment_flags ? 5 : 4 %]"> <a href="attachment.cgi?bugid=[% bugid %]&action=enter">Create a New Attachment</a> (proposed patch, testcase, etc.) </td> [% IF attachments.size %] diff --git a/template/en/default/attachment/show-multiple.html.tmpl b/template/en/default/attachment/show-multiple.html.tmpl index 3159b8e87..48f03dff1 100644 --- a/template/en/default/attachment/show-multiple.html.tmpl +++ b/template/en/default/attachment/show-multiple.html.tmpl @@ -40,7 +40,7 @@ <div align="center"> <table class="attachment_info" cellspacing="0" cellpadding="4" border="1" width="75%"> <tr> - <td valign="top" bgcolor="#cccccc" colspan="5"> + <td valign="top" bgcolor="#cccccc" colspan="6"> <big><b>Attachment #[% a.attachid %]</b></big> </td> </tr> @@ -62,6 +62,7 @@ </td> <td valign="top">[% a.date FILTER time %]</td> + <td valign="top">[% a.datasize FILTER unitconvert %]</td> <td valign="top"> [% IF a.statuses.size == 0 %] |