<tbody>
[% FOREACH shortcut IN shortcuts %]
<tr>
<td>[% shortcut.shortcut_keys %]</td>
<td>[% shortcut.shortcut_keys | html %]</td>
<td>[% shortcut.shortcut_desc %]</td>
<td>[% shortcut.shortcut_desc | html %]</td>
</tr>
[% END %]
<td><label for="shortcut_keys">[% shortcut.shortcut_desc %]</label></td>
<td><label for="shortcut_keys">[% shortcut.shortcut_desc | html %]</label></td>
<td>
<input type="hidden" name="shortcut_name" value="[% shortcut.shortcut_name %]">
<input type="hidden" name="shortcut_name" value="[% shortcut.shortcut_name | html %]">
<input type="text" name="shortcut_keys" value="[% shortcut.shortcut_keys %]">
<input type="text" name="shortcut_keys" value="[% shortcut.shortcut_keys | html %]">
</td>
my $input = new CGI;
my $op = $input->param('op') || 'list';
my @messages;
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{ template_name => "tools/adveditorshortcuts.tt",
-