~ubuntu-branches/ubuntu/hardy/bugzilla/hardy-security

« back to all changes in this revision

Viewing changes to template/en/default/list/list-simple.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Rémi Perrot
  • Date: 2004-04-02 01:13:32 UTC
  • Revision ID: james.westby@ubuntu.com-20040402011332-hxrg0n2szimd7d25
Tags: upstream-2.16.5
Import upstream version 2.16.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- 1.0@bugzilla.org -->
 
2
[%# The contents of this file are subject to the Mozilla Public
 
3
  # License Version 1.1 (the "License"); you may not use this file
 
4
  # except in compliance with the License. You may obtain a copy of
 
5
  # the License at http://www.mozilla.org/MPL/
 
6
  #
 
7
  # Software distributed under the License is distributed on an "AS
 
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
  # implied. See the License for the specific language governing
 
10
  # rights and limitations under the License.
 
11
  #
 
12
  # The Original Code is the Bugzilla Bug Tracking System.
 
13
  #
 
14
  # The Initial Developer of the Original Code is Netscape Communications
 
15
  # Corporation. Portions created by Netscape are
 
16
  # Copyright (C) 1998 Netscape Communications Corporation. All
 
17
  # Rights Reserved.
 
18
  #
 
19
  # Contributor(s): Myk Melez <myk@mozilla.org>
 
20
  #%]
 
21
 
 
22
[%# INTERFACE:
 
23
  # title: string. The title for this page. (optional)
 
24
  #%]
 
25
 
 
26
[%############################################################################%]
 
27
[%# Initialization                                                           #%]
 
28
[%############################################################################%]
 
29
 
 
30
[% DEFAULT title = "Bug List" %]
 
31
[% title = title FILTER html %]
 
32
 
 
33
 
 
34
[%############################################################################%]
 
35
[%# Bug Table                                                                #%]
 
36
[%############################################################################%]
 
37
 
 
38
<html>
 
39
 
 
40
  <head>
 
41
    <title>[% title %]</title>
 
42
    <link href="css/buglist.css" rel="stylesheet" type="text/css">
 
43
  </head>
 
44
 
 
45
  <body>
 
46
    [% IF bugs.size == 0 %]
 
47
      <h3>Zarro Boogs found.</h3>
 
48
    [% ELSE %]
 
49
      [% PROCESS list/table.html.tmpl %]
 
50
    [% END %]
 
51
  </body>
 
52
 
 
53
</html>