summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl
blob: 39c20e325e649ca9ca1bc586b39e4df860767ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[%# INTERFACE:
  # value: Bugzilla::Field::Choice; The field value being deleted.
  # value_count: number; The number of values available for this field.
  # field: object; the field the value is being deleted from.
  #%]

[% title = BLOCK %]
  Delete Value '[% value.name FILTER html %]' from the 
  '[% field.description FILTER html %]' ([% field.name FILTER html %]) field
[% END %]

[% PROCESS global/header.html.tmpl
  title = title
  style_urls = ['skins/standard/admin.css']
%]

<table border="1" cellpadding="4" cellspacing="0">
<tr class="column_header">
  <th valign="top" class="left">Field</th>
  <th valign="top" class="left">Value</th>
</tr>
<tr>
  <td valign="top">Field Name:</td>
  <td valign="top">[% field.description FILTER html %]</td>
</tr>
<tr>
  <td valign="top">Field Value:</td>
  <td valign="top">[% value.name FILTER html %]</td>
</tr>
<tr>
  <td valign="top">[% terms.Bugs %]:</td>
  <td valign="top">
[% IF value.bug_count %]
  <a title="List of [% terms.bugs %] where '
            [%- field.description FILTER html %]' is '
            [%- value.name FILTER html %]'"
     href="buglist.cgi?[% field.name FILTER uri %]=
           [%- value.name FILTER uri %]">
   [%- value.bug_count FILTER html %]</a>
[% ELSE %]
  None
[% END %]
  </td>
</tr>
</table>

<h2>Confirmation</h2>

[% IF value.is_default || value.bug_count || (value_count == 1)
      || value.controls_visibility_of_fields.size
      || value.controlled_values_array.size 
%]

  <p>Sorry, but the '[% value.name FILTER html %]' value cannot be deleted
    from the '[% field.description FILTER html %]' field for the following 
    reason(s):</p>

  <ul class="warningmessages">
    [% IF value.is_default %]
      <li>'[% value.name FILTER html %]' is the default value for
        the '[% field.description FILTER html %]' field.
        [% IF user.in_group('tweakparams') %]
          You first have to <a href="editparams.cgi?section=bugfields">change
          the default value</a> for this field before you can delete
          this value.
        [% END %]
      </li>
    [% END %]

    [% IF value.bug_count %]
      <li>
        [% IF value.bug_count > 1 %]
          There are [% value.bug_count FILTER html %] [%+ terms.bugs %] 
          with this field value.
        [% ELSE %]
          There is 1 [% terms.bug %] with this field value.
        [% END %]
        You must change the field value on
          <a title="List of [% terms.bugs %] where '
                    [%- field.description FILTER html %]' is '
                    [%- value.name FILTER html %]'"
             href="buglist.cgi?[% field.name FILTER uri %]=
                   [%- value.name FILTER uri %]">
            [% IF value.bug_count > 1 %]
              those [% terms.bugs %] 
            [% ELSE %]
              that [% terms.bug %]
            [% END %]
          </a>
          to another value before you can delete this value.
      </li>
    [% END %]

    [% IF value_count == 1 %]
      <li>'[% value.name FILTER html %]' is the last value for
        '[%- field.description FILTER html %]', and so it cannot be deleted.
      </li>
    [% END %]

    [% IF value.controls_visibility_of_fields.size %]
      <li>This value controls the visibility of the following fields:<br>
        [% FOREACH field = value.controls_visibility_of_fields %]
          <a href="editfields.cgi?action=edit&name=
                   [%- field.name FILTER uri %]">
            [%- field.description FILTER html %] 
            ([% field.name FILTER html %])</a><br>
        [% END %]
      </li>
    [% END %]

    [% IF value.controlled_values_array.size %]
      <li>This value controls the visibility of the following values in
        other fields:<br>
       [% FOREACH field_name = value.controlled_values.keys %]
         [% FOREACH controlled = value.controlled_values.${field_name} %]
           <a href="editvalues.cgi?action=edit&field=
                    [%- controlled.field.name FILTER uri %]&value=
                    [%- controlled.name FILTER uri %]">
             [% controlled.field.description FILTER html %]
             ([% controlled.field.name FILTER html %]):
             [%+ controlled.name FILTER html %]</a><br>
         [% END %]
       [% END %]
      </li>
    [% END %]
  </ul>

[% ELSE %]

  <p>Do you really want to delete this value?</p>

  <form method="post" action="editvalues.cgi">
    <input type="submit" value="Yes, delete" id="delete">
    <input type="hidden" name="action" value="delete">
    <input type="hidden" name="field" value="[% field.name FILTER html %]">
    <input type="hidden" name="value" value="[% value.name FILTER html %]">
    <input type="hidden" name="token" value="[% token FILTER html %]">
  </form>

[% END %]

[% PROCESS admin/fieldvalues/footer.html.tmpl
  no_edit_link = 1
 +%]

[% PROCESS global/footer.html.tmpl %]