Which template contains the sidebar links

I’d like to add the two queues we have into the sidebar of the RT interface.
I’m trying to find which files are used to build these out. Any pointers as
to where to look for this would be useful. Thanks.

Gary L. Greene, Jr.
IT Operations
Minerva Networks, Inc.
Cell: (650) 704-6633
Office: (408) 240-1239

I’d like to add the two queues we have into the sidebar of the RT interface.
I’m trying to find which files are used to build these out. Any pointers as
to where to look for this would be useful. Thanks.

share/html/Elements/Tabs

you can add more links by writing something like this in the following
file (callback):

local/html/Callbacks/MyCallbacks/Elements/Tabs/Default

----snip----
<%init>
$toptabs->{‘Q’} = { title => loc(‘Queue1’),
path => ‘/index.html?q=Queue1’,
};
</%init>
<%args>
$topactions => undef
$toptabs => undef
</%args>
----snip----

Thanks for the pointer on this :)On 22/2/11 8:52 AM, “Emmanuel Lacour” elacour@easter-eggs.com wrote:

On Tue, Feb 15, 2011 at 02:40:08PM -0800, Gary Greene wrote:

I’d like to add the two queues we have into the sidebar of the RT interface.
I’m trying to find which files are used to build these out. Any pointers as
to where to look for this would be useful. Thanks.

share/html/Elements/Tabs

you can add more links by writing something like this in the following
file (callback):

local/html/Callbacks/MyCallbacks/Elements/Tabs/Default

----snip----
<%init>
$toptabs->{‘Q’} = { title => loc(‘Queue1’),
path => ‘/index.html?q=Queue1’,
};
</%init>
<%args>
$topactions => undef
$toptabs => undef
</%args>
----snip----

Gary L. Greene, Jr.
IT Operations
Minerva Networks, Inc.
Cell: (650) 704-6633
Office: (408) 240-1239