diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-05-29 16:41:25 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-05-29 16:41:25 +0200 |
commit | a196f9ce707424901a8d26262c441f56650784f8 (patch) | |
tree | ba34340b710cf84baa9e859c9c69f7573a0800e3 /template | |
parent | c0583bad191f07edbdcbc43c720f278759b78709 (diff) | |
download | bugzilla-a196f9ce707424901a8d26262c441f56650784f8.tar.gz bugzilla-a196f9ce707424901a8d26262c441f56650784f8.tar.xz |
Bug 327657: "Edit attachment" page should show me when the file was attached
r/a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 69b91abbf..c6ee527a5 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -59,7 +59,7 @@ [%+ attachment.datasize FILTER unitconvert %] [% ELSE %] <em>deleted</em> - [% END %], created by [%+ INCLUDE global/user.html.tmpl who = attachment.attacher %] + [% END %], created by [%+ INCLUDE global/user.html.tmpl who = attachment.attacher %] on [%+ attachment.attached FILTER time %] [% IF attachment.isprivate %]; <span class="bz_private">only visible to <strong>[% Param('insidergroup') FILTER html %]</strong> members</span> [% END %] @@ -100,7 +100,12 @@ <span class="label">Creator:</span> [%+ INCLUDE global/user.html.tmpl who = attachment.attacher %] </div> - + + <div id="attachment_created"> + <span class="label">Created:</span> + [%+ attachment.attached FILTER time %] + </div> + <div id="attachment_size"> <span class="label">Size:</span> [% IF attachment.datasize %] |