blob: 976d78be54705032614b9e6193b6eef00fd7a5f2 (
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
|
[%# 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/field-descs.none.tmpl";
requestee = requests.item(recipient.login).requestee;
summary = requests.item(recipient.login).summary;
types = requests.item(recipient.login).types;
%]
<!doctype html>
<html>
<head>
<title>[[% terms.Bugzilla %]] Your Overdue Requests</title>
</head>
<body bgcolor="#ffffff">
<h3>Overdue requests requiring action from you:</h3>
<div>[% summary.requestee FILTER html %]</div>
[% PROCESS requests report="requestee" requests=requestee %]
[% BLOCK requests %]
[% FOREACH type IN types.item(report) %]
<h3>
[% type FILTER upper FILTER html %] requests
<span style="font-size: x-small; font-weight: normal">
(<a href="[% urlbase FILTER none %]buglist.cgi?bug_id=
[% FOREACH request IN requests.item(type) %]
[% request.bug.id FILTER none %]
[% "%2C" UNLESS loop.last %]
[% END %]">buglist</a>)
</span>
</h3>
<ul>
[% FOREACH request IN requests.item(type) %]
<li>
<a href="[% urlbase FILTER none %]show_bug.cgi?id=[% request.bug.id FILTER none %]"
title="[% request.bug.tooltip FILTER html %]">
[% request.bug.id FILTER none %] - [% request.bug.short_desc FILTER html %]
</a><br>
<b>[%+ request.flag.age FILTER html %]</b>
[% IF report == "requestee" %]
from [% request.setter.realname || request.setter.login FILTER html %]
[% ELSIF request.requestee %]
to [% request.requestee.realname || request.setter.login FILTER html %]
[% ELSE %]
to <i>anyone</i>
[% END %]
<br>
[% IF report == "requestee" %]
<div style="font-size: x-small">
[% IF request.attachment %]
<a href="[% urlbase FILTER none %]attachment.cgi?id=[% request.attachment.id FILTER none %]&action=edit">Details</a>
[% IF request.attachment.ispatch %]
| <a href="[% urlbase FILTER none %]attachment.cgi?id=[% request.attachment.id FILTER none %]&action=diff">Diff</a>
| <a href="[% urlbase FILTER none %]review?bug=[% request.bug.id FILTER none %]&attachment=[% request.attachment.id FILTER none %]">Review</a>
[% END %]
|
[% END %]
<a href="[% urlbase FILTER none %]request_defer?flag=[% request.flag.id FILTER none %]">Defer</a>
</div>
[% END %]
<br>
</li>
[% END %]
</ul>
[% END %]
[% END %]
<div>
<hr style="border: 1px dashed #969696">
[% IF requestee.item('review').size || requestee.item('feedback').size %]
<a href="https://wiki.mozilla.org/BMO/Handling_Requests">
Guidance on handling requests
</a><br>
[% END %]
<a href="[% urlbase FILTER none %]request.cgi?action=queue&requestee=[% recipient.login FILTER uri %]&group=type">
See all your overdue requests
</a><br>
<a href="[% urlbase FILTER none %]userprefs.cgi#request_nagging">
Opt out of these emails
</a><br>
</div>
<div style="font-size: 90%; color: #666666">
<hr style="border: 1px dashed #969696">
<b>You are receiving this mail because:</b>
<ul>
<li>You have overdue requests.</li>
</ul>
</div>
@@body-headers@@
</body>
</html>
|