import of rt 3.0.4
[freeside.git] / rt / html / Approvals / Elements / Approve
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 <tr bgcolor="#b9b9ff">
25 <td colspan=2><font size="3">
26 <a href="<%$RT::WebPath%>/Approvals/Display.html?id=<%$ticket->Id%>"><% loc("#[_1]: [_2]", $ticket->Id, $ticket->Subject) %></a> (<%loc($ticket->Status)%>)</font></td>
27 </tr>
28 % if ($ShowApproving) {
29 %     foreach my $approving ( $ticket->AllDependedOnBy( Type => 'ticket' ) ) {
30 <tr bgcolor="#e9e9e9">
31 <td colspan=2>
32 <a href="<%$RT::WebPath%>/Ticket/Display.html?id=<% $approving->Id %>"><&|/l, $approving->Id, $approving->Subject &>Originating ticket: #[_1]</&></a>
33 </td>
34 </tr>
35 <tr><td colspan=2>
36 <& /Ticket/Elements/ShowCustomFields, Ticket => $approving &>
37 <& /Ticket/Elements/ShowHistory, Ticket => $approving, Collapsed => 0, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowTitleBarCommands => 0 &>
38 </td></tr>
39 %     }
40 % }
41 <tr <%$class && "class=\"$class\""%>>
42 <td valign=top>
43 <input type="radio" name="Approval-<%$ticket->Id%>-Action" value="approve"><&|/l&>Approve</&><br>
44 <input type="radio" name="Approval-<%$ticket->Id%>-Action" value="deny"><&|/l&>Deny</&><br>
45 <input type="radio" name="Approval-<%$ticket->Id%>-Action" value="none" checked><&|/l&>No action</&>
46 </td>
47 <td>
48 <&|/l&>Notes</&><br>
49 <textarea name="Approval-<%$ticket->Id%>-Notes" rows=2 cols=70></textarea>
50 </td>
51 </tr>
52 <%ARGS>
53 $ShowApproving => 1
54 $ticket => undef
55 $class => undef
56 </%ARGS>