import of rt 3.0.4
[freeside.git] / rt / html / Ticket / Elements / EditBasics
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 <TABLE>
25   <TR><td>
26     <table>
27       <td class="label"><&|/l&>Subject</&>:</td>
28       <td class="value">
29         <input name=Subject value="<%$TicketObj->Subject|h%>" SIZE=50>
30       </td>
31     </table>
32   </td></TR>
33   <TR><td>
34     <table>
35       <TD>
36         <& /Elements/ShadedBox, 
37             title => loc('Status'),
38             content => $SelectStatus &>
39       </TD>
40       <TD>
41         <& /Elements/ShadedBox,
42             title => loc('Time Worked'),
43             content => "<input name=TimeWorked value=\"".$TicketObj->TimeWorked."\" SIZE=5>" &>
44       </TD>
45       <TD>
46         <& /Elements/ShadedBox,
47             title => loc('Time Left'),
48             content => "<input name=TimeLeft value=\"".$TicketObj->TimeLeft."\" SIZE=5>" 
49 &>
50       </TD>
51       <TD>
52         <& /Elements/ShadedBox,
53             title => loc('Priority'),
54             content => "<input name=Priority value=\"".$TicketObj->Priority."\" SIZE=3>" &>
55       </TD>
56       <TD>
57         <& /Elements/ShadedBox,
58             title => loc('Final Priority'),
59             content => "<input name=FinalPriority value=\"".$TicketObj->FinalPriority."\" SIZE=3>" &>
60       </TD>
61       <TD>
62         <& /Elements/ShadedBox,
63             title => loc('Queue'),
64             content => "$SelectQueue" &>
65       </TD>
66     </table>
67   </td></TR>
68 </TABLE>
69
70 <%INIT>
71 #It's hard to do this inline, so we'll preload the html of the selectstatus in here.
72 my $SelectStatus = $m->scomp("/Elements/SelectStatus", Name => 'Status', Default=> $TicketObj->Status);
73 my $SelectQueue = $m->scomp("/Elements/SelectQueue", Name => 'Queue', Default =>$TicketObj->QueueObj->Id);
74
75 </%INIT>
76 <%ARGS>
77
78 $TicketObj => undef
79 </%ARGS>