import rt 3.0.12
[freeside.git] / rt / html / Elements / MyRequests
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Elements/TitleBoxStart, title => loc("[_1] highest priority tickets I requested...", $rows), bodyclass=> '' &>
25 <TABLE BORDER=0 cellspacing=0 cellpadding=1 WIDTH=100%>
26 <TR>
27 <TH align=right><&|/l&>#</&></TH>
28 <TH align=left><&|/l&>Subject</&></TH>
29 <TH align=left><&|/l&>Queue</&></TH>
30 <TH align=left><&|/l&>Status</&></TH>
31 <TH align=left><&|/l&>Owner</&></TH>
32 </TR>
33 % my $i;
34 % while (my $Ticket = $MyTickets->Next) {
35 % $i++;
36 <TR class="<% $i%2 ? 'oddline' : 'evenline'%>" >
37 <TD ALIGN=RIGHT>
38 <%$Ticket->Id%>
39 </TD>
40 <TD>
41 <A HREF="<% $RT::WebPath %>/Ticket/Display.html?id=<%$Ticket->Id%>">
42 <%$Ticket->Subject || loc('(no subject)')%>
43 </A>
44 </TD>
45 <TD>
46 <%$Ticket->QueueObj->Name%>
47 </TD>
48 <TD>
49 % if ($Ticket->HasUnresolvedDependencies ) {
50 %     if ($Ticket->HasUnresolvedDependencies( Type => 'approval'  )) { 
51 <em><&|/l&>(pending approval)</&></em>
52 %     } else {
53 <em><&|/l&>(pending other tickets)</&></em>
54 %     }
55 % } else {
56 <%loc($Ticket->Status)%>
57 % }
58 </TD>
59 <TD>
60 <%$Ticket->OwnerObj->Name%>
61 </TD>
62 </TR>
63 % }
64 </TABLE>
65 <& /Elements/TitleBoxEnd &>
66
67
68 <%INIT>
69 my $rows = $RT::MyRequestsLength;
70 my $MyTickets;
71 $MyTickets = new RT::Tickets ($session{'CurrentUser'});
72 $MyTickets->LimitWatcher(TYPE => 'Requestor', VALUE => $session{'CurrentUser'}->EmailAddress);
73 $MyTickets->LimitStatus(VALUE => "open");
74 $MyTickets->LimitStatus(VALUE => "new");
75 $MyTickets->RowsPerPage($rows);
76 $MyTickets->OrderBy(FIELD => 'Priority', ORDER => 'DESC');
77
78 </%INIT>