import rt 3.8.9
[freeside.git] / rt / html / Admin / Elements / ModifyQueue
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('Editing Configuration for queue [_1]', $QueueObj->Id) &>
25
26 <FORM ACTION="<%$RT::WebPath%>/Admin/Queues/Modify.html" METHOD=POST>
27 <INPUT TYPE=HIDDEN NAME=id VALUE="<%$QueueObj->Id%>">
28 <TABLE>
29 <TR><TD ALIGN=RIGHT>
30 <&|/l&>Queue Name</&>:
31 </TD>
32 <TD><INPUT name="Name" value="<%$QueueObj->Name%>"></TD>
33 </TR><TR>
34 <TD ALIGN=RIGHT>
35 <&|/l&>Description</&>:</TD><TD COLSPAN=3><INPUT name="Description" value="<%$QueueObj->Description%>" size=60></TD></TR>
36 <TR>
37 <TD ALIGN=RIGHT>
38 <&|/l&>Correspondence Address</&>:
39 </TD><TD>
40 <INPUT name="CorrespondAddress" value="<%$QueueObj->CorrespondAddress%>">
41 </TD>
42 <TD ALIGN=RIGHT>
43
44 <&|/l&>Comment Address</&>: </TD><TD>
45 <INPUT NAME="CommentAddress" value="<%$QueueObj->CommentAddress%>">
46 </TD>
47 </TR><TR>
48
49 <TD ALIGN=RIGHT>
50 <&|/l&>Priority starts at</&>:
51 </TD><TD><INPUT NAME="InitialPriority" value="<%$QueueObj->InitialPriority %>">
52 </TD>
53 <TD ALIGN=RIGHT>
54 <&|/l&>Over time, priority moves toward</&>:
55 </TD><TD><INPUT NAME="FinalPriority" value="<%$QueueObj->FinalPriority %>">
56 </TD>
57 </TR>
58 <TR>
59 <TD ALIGN=RIGHT>
60 <&|/l&>Requests should be due in</&>:
61 </TD><TD>
62 <INPUT NAME="DefaultDueIn" VALUE="<%$QueueObj->DefaultDueIn%>"> <&|/l&>days</&>.
63 </TD>
64 </TR>
65 </TABLE>
66 <& /Elements/Submit, Label => loc('Save Changes') &>
67 </form>
68 <& /Elements/TitleBoxEnd &>
69
70 <%INIT>
71
72 </%INIT>
73
74 <%ARGS>
75
76
77 $QueueObj => undef
78 </%ARGS>