~ubuntu-branches/ubuntu/intrepid/bugzilla/intrepid

« back to all changes in this revision

Viewing changes to template/en/default/admin/classifications/select.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): Albert Ting <alt@sonic.net>
20
 
  #%]
21
 
 
22
 
[% PROCESS global/header.html.tmpl
23
 
  title = "Select classification"
24
 
%]
25
 
 
26
 
<table border=1 cellpadding=4 cellspacing=0>
27
 
  <tr bgcolor="#6666ff">
28
 
    <th align="left">Edit Classification ...</th>
29
 
    <th align="left">Description</th>
30
 
    <th align="left">Sortkey</th>
31
 
    <th align="left">Products</th>
32
 
    <th align="left">Action</th>
33
 
  </tr>
34
 
 
35
 
  [% FOREACH cl = classifications %]
36
 
    <tr>
37
 
      <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER url_quote %]"><b>[% cl.name FILTER html %]</b></a></td>
38
 
      <td valign="top"> 
39
 
      [% IF cl.description %]
40
 
        [% cl.description FILTER html_light %]
41
 
      [% ELSE %]
42
 
        <font color="red">none</font>
43
 
      [% END %]
44
 
      </td>
45
 
      <td valign="top">[% cl.sortkey FILTER html %]</td>
46
 
      [% IF (cl.id == 1) %]
47
 
        <td valign="top">[% cl.product_count FILTER html %]</td>
48
 
      [% ELSE %]
49
 
        <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER url_quote %]">reclassify ([% cl.product_count FILTER html %])</a></td>
50
 
      [% END %]
51
 
 
52
 
      [%# don't allow user to delete the default id. %]
53
 
      [% IF (cl.id == 1) %]
54
 
        <td valign="top">&nbsp;</td>
55
 
      [% ELSE %]
56
 
        <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER url_quote %]">delete</a></td>
57
 
      [% END %]
58
 
    </tr>
59
 
  [% END %]
60
 
 
61
 
  <tr>
62
 
    <td valign="top" colspan=4>Add a new classification</td>
63
 
    <td valign="top" align="center"><a href="editclassifications.cgi?action=add">Add</a></td>
64
 
  </tr>
65
 
</table>
66
 
 
67
 
[% PROCESS global/footer.html.tmpl %]