summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/tagging.html.tmpl
blob: 88c11305112e4ae99184759472f4d005feb28578 (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
[%# The contents of this file are subject to the Mozilla Public
  # License Version 1.1 (the "License"); you may not use this file
  # except in compliance with the License. You may obtain a copy of
  # the License at http://www.mozilla.org/MPL/
  #
  # Software distributed under the License is distributed on an "AS
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  # implied. See the License for the specific language governing
  # rights and limitations under the License.
  #
  # The Original Code is the Bugzilla Bug Tracking System.
  #
  # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
  #%]

[% IF user.id && user.settings.per_bug_queries.value == "on" %]
      <form id="list_of_bugs" action="buglist.cgi" method="get">
        <input type="hidden" name="cmdtype" value="doit">
        <input type="hidden" name="remtype" value="asnamed">
        <input type="hidden" name="list_of_bugs" value="1">
        <input type="hidden" name="bug_ids" value="[% bug.id FILTER none %]">
        <input type="hidden" name="token" value="[% issue_hash_token(['savedsearch']) FILTER html %]">
        <select id="lob_action" name="action" >
          <option value="add">Add</option>
          [% IF user.tags.size %]
            <option value="remove">Remove</option>
          [% END %]
        </select>

        [% IF Param('docs_urlbase') %]
          <a href="[% docs_urlbase FILTER html %]using/finding.html#individual-bug-lists">the named tag</a>
        [% ELSE %]
          the named tag
        [% END %]

        [% IF user.tags.size %]
          <select id="lob_oldqueryname" name="oldqueryname">
            [% FOREACH tag = user.tags.keys %]
              <option value="[% tag FILTER html %]">[% tag FILTER html %]</option>
            [% END %]
          </select>
        [% END %]
        <span id="lob_new_query_text">
          [% " or create and add the tag" IF user.tags.size %]
          <input class="txt" type="text" id="lob_newqueryname"
                 size="20" maxlength="64" name="newqueryname">
        </span>
        <span id="lob_direction">to</span>
        this [% terms.bug %]
        <input type="submit" value="Save Tag" id="commit_list_of_bugs">
      </form>
[% END %]