import of rt 3.0.9
[freeside.git] / rt / html / Elements / MyTickets
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 own...", $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>&nbsp;</TH>
32 </TR>
33   <TR>    
34 % my $i;
35 % while (my $Ticket = $MyTickets->Next) {
36 %     next if $Ticket->HasUnresolvedDependencies( Type => 'approval' );
37 %     last if $i++ >= $rows;
38 <TR class="<% $i%2 ? 'oddline' : 'evenline'%>" >                                
39 <TD ALIGN=RIGHT>
40 <%$Ticket->Id%>
41 </TD>
42 <TD>
43 <A HREF="<% $RT::WebPath %>/Ticket/Display.html?id=<%$Ticket->Id%>">
44 <%$Ticket->Subject || loc('(no subject)')%>
45 </A>
46 </TD>
47 <TD>
48 <%$Ticket->QueueObj->Name%>
49 </TD>
50 <TD>
51 % if ($Ticket->HasUnresolvedDependencies ) {
52 %     if ($Ticket->HasUnresolvedDependencies( Type => 'approval' ) or
53 %         $Ticket->HasUnresolvedDependencies( Type => 'code' )) {
54 <em><&|/l&>(pending approval)</&></em>
55 %     } else {
56 <em><&|/l&>(pending other tickets)</&></em>
57 %     }
58 % } else {
59 <%loc($Ticket->Status)%>
60 % }
61 </TD>
62 <TD ALIGN=RIGHT>
63 [<A HREF="<% $RT::WebPath %>/Ticket/Update.html?id=<%$Ticket->Id%>"><&|/l&>Update</&></A>]
64 </TD>
65 </TR>
66 % }
67 </TABLE>
68 <& /Elements/TitleBoxEnd &>
69
70
71 <%INIT>
72 my $rows = $RT::MyTicketsLength;
73 my $MyTickets;
74 $MyTickets = new RT::Tickets ($session{'CurrentUser'});
75 $MyTickets->LimitOwner(VALUE => $session{'CurrentUser'}->Id);
76 $MyTickets->LimitStatus(VALUE => "open");
77 $MyTickets->LimitStatus(VALUE => "new");
78 $MyTickets->RowsPerPage($rows);
79 $MyTickets->OrderBy(FIELD => 'Priority', ORDER => 'DESC');
80
81 </%INIT>