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

« back to all changes in this revision

Viewing changes to template/en/default/admin/groups/remove.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): Dave Miller <justdave@syndicomm.com>
20
 
  #                 Joel Peshkin <bugreport@peshkin.net>
21
 
  #                 Jacob Steenhagen <jake@bugzilla.org>
22
 
  #                 Vlad Dascalu <jocuri@softhome.net>
23
 
  #%]
24
 
 
25
 
[%# INTERFACE:
26
 
  # remove_all: boolean int. Is 1 if the action was remove_all,
27
 
  #         and 0 if the action was remove_all_regexp.
28
 
  # name: string. The place where removal is performed.
29
 
  # regexp: string. The regexp according to which the removal is performed.
30
 
  # users: array with group objects having the properties:
31
 
  #   - login: string. The login which is removed.
32
 
  #%]
33
 
 
34
 
 
35
 
[% IF remove_all %]
36
 
  [% title = BLOCK %]
37
 
    Removing All Explicit Group Memberships from '[% name FILTER html %]'
38
 
  [% END %]
39
 
[% ELSE %]
40
 
  [% title = BLOCK %]
41
 
    Removing All Explicit Group Memberships Matching Group RegExp from '[% name FILTER html %]'
42
 
  [% END %]
43
 
[% END %]
44
 
 
45
 
[% PROCESS global/header.html.tmpl %]
46
 
 
47
 
[% IF remove_all %]
48
 
  <p><b>Removing explicit membership</b></p>
49
 
[% ELSE %]
50
 
  <p><b>Removing explicit memberships of users matching
51
 
  '[% regexp FILTER html %]'...</b></p>
52
 
[% END %]
53
 
    
54
 
[% FOREACH user = users %]
55
 
  [% user.login FILTER html %] removed<br>
56
 
[% END %]
57
 
 
58
 
<p><b>Done</b>.</p>
59
 
 
60
 
<p>Back to the <a href="editgroups.cgi">group list</a>.</p>
61
 
 
62
 
[% PROCESS global/footer.html.tmpl %]