Bug 134161 - Add no result message

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1803 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
akrasilnikov 2013-09-20 08:13:02 +00:00
parent 0a377344d5
commit 1f0d34a6f3
1 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,12 @@
<body>
<div>
[% IF attachments.size == 0 %]
<h3>No attachments</h3>
[% ELSE %]
<table class="attachment_info" cellspacing="0" cellpadding="4" border="1">
[% FOREACH a = attachments %]
<tr>
@ -46,6 +52,8 @@
</tr>
[% END %]
</table>
[% END %]
</div>
</body>