<%doc> Display the history of a filter rule group. \ <%ARGS> $id => undef \ <%INIT> unless ( $session{'CurrentUser'} ->HasRight( Object => $RT::System, Right => 'SuperUser' ) ) { Abort( loc('This feature is only available to system administrators.') ); } my $Object = RT::FilterRuleGroup->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort("Couldn't load filter rule group '$id'"); my $Title = loc( 'History of the filter rule group [_1]', $Object->Name ); \ <& /Admin/Elements/Header, Title => $Title &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $Object, ShowDisplayModes => 0, DisplayPath => 'History.html', &>