diff options
author | gerv%gerv.net <> | 2002-04-27 15:57:11 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-27 15:57:11 +0200 |
commit | 2fbdc1d838a990be1faba320618eae6fadae878a (patch) | |
tree | d770d45181c7ae6fa5be31462ed18b94589fcd72 /template/en/default/list | |
parent | 48fcdfb586c8ff4213ab05dcd849c3e11bb9740c (diff) | |
download | bugzilla-2fbdc1d838a990be1faba320618eae6fadae878a.tar.gz bugzilla-2fbdc1d838a990be1faba320618eae6fadae878a.tar.xz |
Bug 138284 - prepare for Bugzilla Helper replacement enter_bug template. Patch by gerv; r=bbaetz, myk.
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/list-simple.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/en/default/list/list-simple.html.tmpl b/template/en/default/list/list-simple.html.tmpl index 3dd6656d2..b8d8241a3 100644 --- a/template/en/default/list/list-simple.html.tmpl +++ b/template/en/default/list/list-simple.html.tmpl @@ -39,7 +39,11 @@ </head> <body> - [% PROCESS list/table.html.tmpl %] + [% IF bugs.size == 0 %] + <h3>Zarro Boogs found.</h3> + [% ELSE %] + [% PROCESS list/table.html.tmpl %] + [% END %] </body> </html> |