~ubuntu-branches/ubuntu/oneiric/bugzilla/oneiric

« back to all changes in this revision

Viewing changes to template/en/default/bug/show.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

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): Gervase Markham <gerv@gerv.net>
20
 
  #                 Vaskin Kissoyan <vkissoyan@yahoo.com>
21
 
  #                 Bradley Baetz <bbaetz@student.usyd.edu.au>
22
 
  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
23
 
  #%]
24
 
 
25
 
[% PROCESS global/variables.none.tmpl %]
26
 
 
27
 
[%# This script/template only handles one bug #%]
28
 
[% bug = bugs.0 %]
29
 
 
30
 
[% IF !header_done %]
31
 
  [% filtered_desc = bug.short_desc FILTER html %]
32
 
  [% filtered_timestamp = bug.delta_ts FILTER time %]
33
 
  [% PROCESS global/header.html.tmpl
34
 
    title = "$terms.Bug $bug.bug_id &ndash; $filtered_desc"
35
 
    header = "$terms.Bug&nbsp;$bug.bug_id"
36
 
    subheader = filtered_desc
37
 
    header_addl_info = "Last modified: $filtered_timestamp"
38
 
    bodyclasses = ['bz_bug',
39
 
                   "bz_status_$bug.bug_status",
40
 
                   "bz_component_$bug.component",
41
 
                   "bz_bug_$bug.bug_id"
42
 
                  ]
43
 
  %]
44
 
[% END %]
45
 
 
46
 
[% IF nextbug %]
47
 
  <hr>
48
 
  <p>
49
 
    The next [% terms.bug %] in your list is [% terms.bug %]
50
 
    <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a>:
51
 
  </p>
52
 
  <hr>
53
 
[% END %]
54
 
 
55
 
[% PROCESS bug/navigate.html.tmpl %]
56
 
 
57
 
<hr>
58
 
 
59
 
[% PROCESS bug/edit.html.tmpl %]
60
 
 
61
 
<hr>
62
 
 
63
 
[% PROCESS bug/navigate.html.tmpl %]
64
 
 
65
 
<br>
66
 
 
67
 
[% PROCESS global/footer.html.tmpl %]