mail.html.tmpl 2.5 KB
Newer Older
1 2 3
[%# 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/.
4
  #
5 6
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
7 8 9 10 11 12 13 14
  #%]

[%# INTERFACE:
  # subject: subject line of message
  # body: message body, shown before the query tables
  # queries: array of hashes containing:
  #     bugs: array containing hashes of fieldnames->values for each bug
  #     title: the title given in the whine scheduling mechanism
15
  #     name: the name of the query
16
  #     columnlist: array of fieldnames to display in the mail
17 18 19 20 21 22 23 24 25 26 27 28 29
  # author: user object for the person who scheduled this whine
  # recipient: user object for the intended recipient of the message
  #%]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>
      [[% terms.Bugzilla %]] [% subject FILTER html %]
    </title>
  </head>
  <body bgcolor="#FFFFFF">

30
    <pre>
31
      [% body FILTER html %]
32
    </pre>
33 34 35

    <p align="left">
      [% IF author.login == recipient.login %]
36
        <a href="[%+ urlbase FILTER html %]editwhines.cgi">Click
37 38 39 40 41 42
            here to edit your whine schedule</a>
      [% ELSE %]
        This search was scheduled by [% author.login FILTER html %].
      [% END %]
    </p>

43 44
[% IF queries.size %]
  [% FOREACH query=queries %]
45

46
    <h2>[%+ query.title FILTER html %] ([% query.bugs.size %] [%+ terms.bugs %])</h2>
47

48
    <table width="100%">
49
      <tr>
50
        <th>ID</th>
51 52
        [% FOREACH col = query.columnlist %]
          [% NEXT IF col == 'bug_id' %]
53
          <th>[% field_descs.$col FILTER html %]</th>
54
        [% END %]
55 56
      </tr>

57 58 59 60
      [% FOREACH bug=query.bugs %]
        <tr>
          <td align="left"><a href="[%+ urlbase FILTER html %]show_bug.cgi?id=
              [%- bug.bug_id %]">[% bug.bug_id %]</a></td>
61 62 63 64
          [% FOREACH col = query.columnlist %]
            [% NEXT IF col == 'bug_id' %]
            <td align="left">[% display_value(col, bug.$col) FILTER html %]</td>
          [% END %]
65 66 67
        </tr>
      [% END %]
    </table>
68

69 70 71 72 73
    [% IF author.login == recipient.login %]
      <p align="left">
        <a href="[% urlbase FILTER html %]buglist.cgi?cmdtype=runnamed&amp;namedcmd=[% query.name FILTER uri %]">View as [% terms.bug %] list</a>
      </p>
    [% END %]
74 75 76 77 78
  [% END %]
[% ELSE %]

  <h3>No [% terms.bugs %] were found that matched the search criteria.</h3>
[% END %]
79 80
  </body>
</html>