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

« back to all changes in this revision

Viewing changes to template/en/default/admin/milestones/edit.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): Gavin Shelley <bugzilla@chimpychompy.org>
20
 
  #%]
21
 
 
22
 
[%# INTERFACE:
23
 
  # product: object; Bugzilla::Product object representing the product to
24
 
  #               which the milestone belongs.
25
 
  # milestone: object; Bugzilla::Milestone object representing the
26
 
  #                    milestone the user wants to edit.
27
 
  #%]
28
 
 
29
 
[% PROCESS global/variables.none.tmpl %]
30
 
 
31
 
[% title = BLOCK %]Edit Milestone '[% milestone.name FILTER html %]' of product '
32
 
                   [%- product.name FILTER html %]'[% END %]
33
 
[% PROCESS global/header.html.tmpl
34
 
  title = title
35
 
  onload = "document.forms['f'].milestone.select()"
36
 
%]
37
 
 
38
 
<form name="f" method="post" action="editmilestones.cgi">
39
 
  <table border="0" cellpadding="4" cellspacing="0">
40
 
 
41
 
    <tr>
42
 
      <th valign="top"><label for="milestone">Milestone:</label></th>
43
 
      <td><input id="milestone" size="20" maxlength="20" name="milestone" value="
44
 
      [%- milestone.name FILTER html %]"></td>
45
 
    </tr>
46
 
    <tr>
47
 
      <th align="right"><label for="sortkey">Sortkey:</label></th>
48
 
      <td><input id="sortkey" size="20" maxlength="20" name="sortkey" value="
49
 
      [%- milestone.sortkey FILTER html %]"></td>
50
 
    </tr>
51
 
 
52
 
  </table>
53
 
 
54
 
  <input type="hidden" name="milestoneold" value="[% milestone.name FILTER html %]">
55
 
  <input type="hidden" name="action" value="update">
56
 
  <input type="hidden" name="product" value="[% product.name FILTER html %]">
57
 
  <input type="submit" id="update" value="Update">
58
 
  <input type="hidden" name="token" value="[% token FILTER html %]">
59
 
</form>
60
 
 
61
 
[% PROCESS admin/milestones/footer.html.tmpl
62
 
  no_edit_milestone_link = 1 %]
63
 
 
64
 
[% PROCESS global/footer.html.tmpl %]