summaryrefslogtreecommitdiffstats
path: root/template/en/default/account/prefs/saved-searches.html.tmpl
blob: 16ec678760a917745a26550cf6d28b08bbff3846 (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[%# 1.0@bugzilla.org %]
[%# 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.
  #
  # The Initial Developer of the Original Code is Netscape Communications
  # Corporation. Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation. All
  # Rights Reserved.
  #
  # Contributor(s): Gervase Markham <gerv@gerv.net>
  #%]

[%# INTERFACE:
  # queries: list of the named queries visible to the user, both own and shared
  #          by others. Cleaned-up result of Bugzilla::User::queries.
  # queryshare_groups: list of groups the user may share queries with
  #                    (id, name).
  #%]

<p>Your saved searches are as follows:</p>

<blockquote>
  <table border="1" cellpadding="3">  
    <tr>
      <th>
        Search
      </th>
      <th>
        Run
      </th>
      <th>
        Edit
      </th>
      <th>
        Forget
      </th>
      <th>
        Show in
        Footer
      </th>
      [% querysharegroup_regexp = '^' _ Param('querysharegroup') _ '$' %]
      [% may_share = user.groups.keys.grep($querysharegroup_regexp).size %]
      [% IF may_share %]
        <th>
          Share With
          a Group
          [% UNLESS queryshare_groups.size %]
            (there are no groups you may share queries with)
          [% END %]
        </th>
      [% END %]
    </tr>
    <tr>
      <td>My Bugs</td>
      <td>
        [% filtered_username = user.login FILTER url_quote %]
        <a href="[% Param('mybugstemplate').replace('%userid%', filtered_username) %]">Run</a>
      </td>
      <td>
        &nbsp;
      </td>
      <td>
        &nbsp;
      </td>
      <td align="center">
        <input type="checkbox" 
               name="showmybugslink"
               value="1"
               [% " checked" IF user.showmybugslink %]>
      </td>
      <td>
        &mdash;
      </td>
    </tr>
    [% FOREACH q = queries %]
      [% NEXT UNLESS q.userid == user.id %]
      <tr>
        <td>[% q.name FILTER html %]</td>
        <td>
          <a href="buglist.cgi?cmdtype=runnamed&amp;namedcmd=[% q.name FILTER url_quote %]">Run</a>
        </td>
        <td>
          <a href="query.cgi?[% q.query FILTER html %]&amp;known_name=[% q.name FILTER url_quote %]">Edit</a>
        </td>
        <td>
          [% IF q.usedinwhine %]
            Remove from <a href="editwhines.cgi">whining</a> first
          [% ELSE %]
            <a href="buglist.cgi?cmdtype=dorem&amp;remaction=forget&amp;namedcmd=
                     [% q.name FILTER url_quote %]">Forget</a>
          [% END %]
        </td>
        <td align="center">
          <input type="checkbox" 
                 name="link_in_footer_[% q.id FILTER html %]"
                 value="1"
                 [% " checked" IF q.link_in_footer %]>
        </td>
        <td>
          [% IF queryshare_groups.size %]
            <select name="share_[% q.id FILTER html %]">
              <option value="">Don't share</option>
              [% FOREACH group = queryshare_groups %]
                <option value="[% group.id %]"
                        [% ' selected="selected"' IF q.shared_with_group == group.id %]>[% group.name FILTER html %]</option>
              [% END %]
            </select>
          [% ELSE %]
            &mdash;
          [% END %]
        </td>
      </tr>
    [% END %]
  </table>
</blockquote>

<p>You may use these searches saved and shared by others:</p>

<blockquote>
  <table border="1" cellpadding="3">  
    <tr>
      <th>
        Search
      </th>
      <th>
        Shared By
      </th>
      <th>
        Run
      </th>
      <th>
        Show in
        Footer
      </th>
    </tr>
    [% found_shared_query = 0 %]
    [% FOREACH q = queries %]
      [% NEXT IF q.userid == user.id %]
      [% found_shared_query = 1 %]
      <tr>
        <td>[% q.name FILTER html %]</td>
        <td>[% q.user.identity FILTER html %]</td>
        <td>
          <a href="buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=
                   [% q.name FILTER url_quote %]&amp;sharer_id=
                   [% q.userid FILTER url_quote %]">Run</a>
        </td>
        <td align="center">
          <input type="checkbox" 
                 name="link_in_footer_[% q.id FILTER html %]"
                 value="1"
                 [% " checked" IF q.link_in_footer %]>
        </td>
      </tr>
    [% END %]
    [% IF !found_shared_query %]
      <tr>
        <td colspan="4" style="text-align: center">
          &lt;None&gt;
        </td>
      </tr>
    [% END %]
  </table>
</blockquote>