~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to template/en/default/admin/classifications/reclassify.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 = "Reclassify products"
24
 
%]
25
 
 
26
 
<form method=post action="editclassifications.cgi">
27
 
  <table border=0 cellpadding=4 cellspacing=0>
28
 
    <tr>
29
 
      <td valign="top">Classification:</td>
30
 
      <td valign="top" colspan=3>[% classification.name FILTER html %]</td>
31
 
 
32
 
    </tr><tr>
33
 
      <td valign="top">Description:</td>
34
 
      <td valign="top" colspan=3>
35
 
        [% IF classification.description %]
36
 
          [% classification.description FILTER html_light %]
37
 
        [% ELSE %]
38
 
          <font color="red">description missing</font>
39
 
        [% END %]
40
 
      </td>
41
 
 
42
 
    </tr><tr>
43
 
      <td valign="top">Sortkey:</td>
44
 
      <td valign="top" colspan=3>[% classification.sortkey FILTER html %]</td>
45
 
 
46
 
    </tr><tr>
47
 
      <td valign="top">Products:</td>
48
 
      <td valign="top">Other Classifications</td>
49
 
      <td></td>
50
 
      <td valign="top">This Classification</td>
51
 
 
52
 
    </tr><tr>
53
 
      <td></td>
54
 
      <td valign="top">
55
 
      <select name="prodlist" id="prodlist" multiple="multiple" size="20">
56
 
        [% FOREACH class = classifications %]
57
 
          [% IF class.id != classification.id %]
58
 
            [% FOREACH product = class.products %]
59
 
              <option value="[% product.name FILTER html %]">
60
 
                [[% class.name FILTER html %]]&nbsp;[% product.name FILTER html %]
61
 
              </option>
62
 
            [% END %]
63
 
          [% END %]
64
 
        [% END %]
65
 
      </select></td>
66
 
 
67
 
      <td align="center">
68
 
        <input type=submit value="     Add &gt;&gt;  " name="add_products"><br><br>
69
 
        <input type=submit value="&lt;&lt; Remove" name="remove_products">
70
 
      </td>
71
 
 
72
 
      <td valign="middle" rowspan=2>
73
 
        <select name="myprodlist" id="myprodlist" multiple="multiple" size="20">
74
 
          [% FOREACH product = classification.products %]
75
 
            <option value="[% product.name FILTER html %]">
76
 
              [% product.name FILTER html %]
77
 
            </option>
78
 
          [% END %]
79
 
      </select></td>
80
 
    </tr>
81
 
  </table>
82
 
 
83
 
  <input type=hidden name="action" value="reclassify">
84
 
  <input type=hidden name="classification" value="[% classification.name FILTER html %]">
85
 
  <input type="hidden" name="token" value="[% token FILTER html %]">
86
 
</form>
87
 
 
88
 
<p>Back to the <a href="./">main [% terms.bugs %] page</a>,
89
 
or <a href="editclassifications.cgi"> edit</a> more classifications.
90
 
 
91
 
[% PROCESS global/footer.html.tmpl %]
92