1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<TABLE WIDTH="100%" >
<TR>
<TD VALIGN=TOP >
<& /Elements/TitleBoxStart, title => 'The Basics',
title_href =>"$RT::WebPath/Ticket/Modify.html?id=".$Ticket->Id,
title_class=> 'inverse',
color => "#993333" &>
<& /Ticket/Elements/ShowBasics, Ticket => $Ticket &>
<& /Elements/TitleBoxEnd &>
<BR>
<& /Elements/TitleBoxStart,
title_href =>"$RT::WebPath/Ticket/Modify.html?id=".$Ticket->Id,
title_class=> 'inverse',
title => "Keyword Selections", color => "#993300"
&>
<& /Ticket/Elements/ShowKeywordSelects, Ticket => $Ticket &>
<& /Elements/TitleBoxEnd &>
<BR>
<& /Elements/TitleBoxStart, title => 'Relationships',
title_href => "$RT::WebPath/Ticket/ModifyLinks.html?id=".$Ticket->Id,
title_class=> 'inverse',
titleright => '', color=> "#336633" &>
<& /Ticket/Elements/ShowLinks, Ticket => $Ticket &>
<& /Elements/TitleBoxEnd &>
</TD>
<BR>
<TD VALIGN=TOP >
<& /Elements/TitleBoxStart, title => "Dates",
title_href =>"$RT::WebPath/Ticket/ModifyDates.html?id=".$Ticket->Id,
title_class=> 'inverse',
color => "#663366" &>
<& /Ticket/Elements/ShowDates, Ticket => $Ticket &>
<& /Elements/TitleBoxEnd &>
<BR>
<& /Elements/TitleBoxStart, title => 'People',
title_href =>"$RT::WebPath/Ticket/ModifyPeople.html?id=".$Ticket->Id,
title_class=> 'inverse',
color => "#333399" &>
<& /Ticket/Elements/ShowPeople, Ticket => $Ticket &>
<& /Elements/TitleBoxEnd &>
<BR>
<& /Ticket/Elements/ShowRequestor, Ticket => $Ticket &>
</TD>
</TR>
</TABLE>
<%ARGS>
$Ticket => undef
</%ARGS>
|