summaryrefslogtreecommitdiffstats
path: root/extensions/TrackingFlags/template/en/default/pages/tracking_flags_admin_list.html.tmpl
blob: 5ea68dd9873d7f925d86a3a9db79a6c3f857b25f (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
[%# 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.
  #%]

[% PROCESS global/header.html.tmpl
  title = "Release Tracking Flags"
  style_urls = [ 'extensions/TrackingFlags/web/styles/admin.css' ]
  javascript_urls = [ 'extensions/TrackingFlags/web/js/admin.js' ]
%]

<table id="flag_list" class="list" cellspacing="0">

<tr>
  <th>Name</th>
  <th>Description</th>
  <th>Type</th>
  <th>Sort Key</th>
  <th>Active</th>
  [% IF show_bug_counts %]
    <th>[% terms.Bugs %]</th>
  [% END %]
  <th>&nbsp;</th>
</tr>

[% FOREACH flag = flags %]
  <tr class="flag_row
             [% loop.count % 2 == 1 ? " odd_row" : " even_row" %]
             [% " is_disabled" UNLESS flag.is_active %]">
    <td [% 'class="disabled"' UNLESS flag.is_active %]>
      <a href="page.cgi?id=tracking_flags_admin_edit.html&amp;mode=edit&amp;flag_id=[% flag.flag_id FILTER uri %]">
        [% flag.name FILTER html %]
      </a>
    </td>
    <td [% 'class="disabled"' UNLESS flag.is_active %]>
      [% flag.description FILTER html %]
    </td>
    <td [% 'class="disabled"' UNLESS flag.is_active %]>
      [% flag.flag_type FILTER html %]
    </td>
    <td [% 'class="disabled"' UNLESS flag.is_active %]>
      [% flag.sortkey FILTER html %]
    </td>
    <td>
      [% flag.is_active ? "Yes" : "No" %]
    </td>
    [% IF show_bug_counts %]
      <td>
        [% flag.bug_count FILTER html %]
      </td>
    [% END %]
    <td>
      <a href="page.cgi?id=tracking_flags_admin_edit.html&amp;mode=copy&amp;copy_from=[% flag.flag_id FILTER uri %]">Copy</a>
    </td>
  </tr>
[% END %]

</table>

<div id="new_flag">
  <a href="page.cgi?id=tracking_flags_admin_edit.html">Add Flag</a> |
  [% IF !show_bug_counts %]
    <a href="page.cgi?id=tracking_flags_admin_list.html&amp;show_bug_counts=1">
      Show [% terms.bug %] counts (slower)</a> |
  [% END %]
  <input type="checkbox" onclick="filter_flag_list(this.checked)" id="filter">
  <label for="filter">Show disabled flags</label>
</div>

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