diff options
Diffstat (limited to 'rt/share/html/Ticket/Elements/ShowSummary')
-rwxr-xr-x | rt/share/html/Ticket/Elements/ShowSummary | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/rt/share/html/Ticket/Elements/ShowSummary b/rt/share/html/Ticket/Elements/ShowSummary index 25782e693..9c8c8b409 100755 --- a/rt/share/html/Ticket/Elements/ShowSummary +++ b/rt/share/html/Ticket/Elements/ShowSummary @@ -53,11 +53,11 @@ (($can_modify || $can_modify_cf) ? (title_href => RT->Config->Get('WebPath')."/Ticket/Modify.html?id=".$Ticket->Id) : ()), class => 'ticket-info-basics', &><& /Ticket/Elements/ShowBasics, Ticket => $Ticket &></&> - <&| /Widgets/TitleBox, title => loc('Custom Fields'), - (($can_modify || $can_modify_cf) ? (title_href => RT->Config->Get('WebPath')."/Ticket/Modify.html?id=".$Ticket->Id) : ()), - class => 'ticket-info-cfs', - hide_empty => 1, - &><& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket &></&> + + <& /Elements/ShowCustomFieldCustomGroupings, + Object => $Ticket, + title_href => ($can_modify || $can_modify_cf) ? RT->Config->Get('WebPath')."/Ticket/Modify.html" : "", + &> <&| /Widgets/TitleBox, title => loc('Customers'), #$can_modify_customers? @@ -70,6 +70,7 @@ class => 'ticket-info-people', &><& /Ticket/Elements/ShowPeople, Ticket => $Ticket &></&> <& /Ticket/Elements/ShowAttachments, Ticket => $Ticket, Attachments => $Attachments &> +% $m->callback( %ARGS, CallbackName => 'AfterAttachments' ); <& /Ticket/Elements/ShowRequestor, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'LeftColumn' ); </td> @@ -82,9 +83,7 @@ &> <table><tr><td> <form action="<%RT->Config->Get('WebPath')%>/Ticket/Display.html" name="UpdateReminders" id="UpdateReminders" method="post"> -% if ( $m->comp("/Ticket/Elements/Reminders", Ticket => $Ticket, ShowCompleted => 0) ) { - <div align="right"><input type="submit" class="button" value="<&|/l&>Save</&>" /></div> -% } + <& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 0 &> </form> </td></tr></table> </&> @@ -100,7 +99,7 @@ ($can_modify ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyLinks.html?id=".$Ticket->Id) : ()), class => 'ticket-info-links', @extra, - &><& /Elements/ShowLinks, Ticket => $Ticket &></&> + &><& /Elements/ShowLinks, Object => $Ticket &></&> % $m->callback( %ARGS, CallbackName => 'RightColumn' ); </td> </tr> @@ -112,9 +111,7 @@ $Attachments => undef <%INIT> my $can_modify = $Ticket->CurrentUserHasRight('ModifyTicket'); my $can_modify_cf = $Ticket->CurrentUserHasRight('ModifyCustomField'); -my $can_modify_owner = $Ticket->CurrentUserHasRight('OwnTicket') - || $Ticket->CurrentUserHasRight('TakeTicket') - || $Ticket->CurrentUserHasRight('StealTicket'); +my $can_modify_owner = $Ticket->CurrentUserCanSetOwner(); my $can_modify_people = $Ticket->CurrentUserHasRight('Watch') || $Ticket->CurrentUserHasRight('WatchAsAdminCc'); </%INIT> |