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

« back to all changes in this revision

Viewing changes to template/en/default/admin/users/create.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
 
  # Contributor(s): Marc Schumann <wurblzap@gmail.com>
15
 
  #%]
16
 
 
17
 
[%# INTERFACE:
18
 
  #
19
 
  # listselectionvalues: selection values to recreate the current user list.
20
 
  # editusers:           is viewing user member of editusers?
21
 
  #%]
22
 
 
23
 
[% PROCESS global/header.html.tmpl
24
 
  title = "Add user"
25
 
  style_urls = ['skins/standard/editusers.css']
26
 
  onload = "document.forms['f'].login.focus()"
27
 
%]
28
 
 
29
 
[% PROCESS admin/users/listselectvars.html.tmpl
30
 
  listselectionvalues = listselectionvalues
31
 
%]
32
 
 
33
 
<form name="f" method="post" action="editusers.cgi">
34
 
<table class="main">
35
 
  [% PROCESS admin/users/userdata.html.tmpl
36
 
    editform  = 0
37
 
    editusers = editusers
38
 
    otheruser = []
39
 
  %]
40
 
</table>
41
 
<p>
42
 
  <input type="submit" id="add" value="Add"/>
43
 
  <input type="hidden" name="action" value="new" />
44
 
  <input type="hidden" name="token" value="[% token FILTER html %]">
45
 
  [% INCLUDE listselectionhiddenfields %]
46
 
</p>
47
 
</form>
48
 
 
49
 
<p>
50
 
  You can also <a href="editusers.cgi">find a user</a>
51
 
  [% IF listselectionvalues %],
52
 
    or
53
 
    <a href="editusers.cgi?action=list[% INCLUDE listselectionurlparams %]">go
54
 
    back to the user list</a>
55
 
  [% END %].
56
 
</p>
57
 
 
58
 
[% PROCESS global/footer.html.tmpl %]