summaryrefslogtreecommitdiffstats
path: root/template/en/default/list/quips.html.tmpl
blob: ccb5208b7818e3510bcd8b77faecf66926fb496b (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
<!-- 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:
  # added_quip: string. Defined if the CGI added a quip data before 
  #                displaying anything; if defined, its value is that quip.
  # show_quips: boolean. True if we are showing the entire quip list.
  # quips: list of strings. Defined iff show_quips is true. List of all quips.
  #%]

[% PROCESS global/header.html.tmpl
           title = "Bugzilla Quip System"
           h1 = "Add your own clever headline"
 %]

[% IF added_quip %]
  <p>
    <font color="red">
      Your quip '<tt>[% added_quip FILTER html %]</tt>' has been added.
    </font>
  </p>
[% END %]

[% IF deleted_quip %]
  <p>
    <font color="red">
      The quip '<tt>[% deleted_quip FILTER html %]</tt>' has been deleted.
    </font>
  </p>
[% END %]

<p>
  Bugzilla will pick a random quip for the headline on each bug list, and 
  you can extend the quip list. Type in something clever or funny or boring 
  (but not obscene or offensive, please) and bonk on the button.
</p>

<form method="post" action="quips.cgi">
  <input type="hidden" name="action" value="add">
  <input size="80" name="quip">
  <p>
    <input type="submit" value="Add This Quip">
  </p>
</form>

[% IF show_quips %]
  <h2>
    Existing quips:
  </h2>
  <ul>
    [% FOREACH quip = quips %]
      <li>[% quip FILTER html %]</li>
    [% END %]
  </ul>
[% ELSIF edit_quips %]
  <h2>Edit existing quips:</h2>
  <table border="1">
    <thead><tr>
      <th>Action</th>
      <th>User</th>
      <th>Quip</th>
    </tr></thead><tbody>
    [% FOREACH quipid = quipids %]
      <tr>
        <td>
          <a href="quips.cgi?action=delete&amp;quipid=[% quipid FILTER uri%]">
            Delete
          </a>
        </td>
        <td>
          [% userid = quips.$quipid.userid  %]
          [% users.$userid FILTER html      %]
          [% "Unknown" IF NOT users.$userid %]
        </td>
        <td>[% quips.$quipid.quip FILTER html %]</td>
      </tr>
    [% END %]
    </tbody></table>
[% ELSE %]
  <p>
    Those who like their wisdom in large doses can 
    <a href="quips.cgi?action=show">view the whole quip list</a>.
  </p>
  [% IF UserInGroup('admin') %]
    <p><a href="quips.cgi?action=edit">Edit</a> the quip list.</p>
  [% END %]
[% END %]

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