- $form->{callback} = "am.pl?action=list_language";
-
- my $callback = $form->escape($form->{callback});
-
- $form->{title} = $locale->text('Languages');
-
- my @column_index = qw(description template_code article_code output_numberformat output_dateformat output_longdates);
- my %column_header;
- $column_header{description} =
- qq|<th class=listheading width=60%>|
- . $locale->text('Description')
- . qq|</th>|;
- $column_header{template_code} =
- qq|<th class=listheading width=10%>|
- . $locale->text('Template Code')
- . qq|</th>|;
- $column_header{article_code} =
- qq|<th class=listheading>|
- . $locale->text('Article Code')
- . qq|</th>|;
- $column_header{output_numberformat} =
- qq|<th class=listheading>|
- . $locale->text('Number Format')
- . qq|</th>|;
- $column_header{output_dateformat} =
- qq|<th class=listheading>|
- . $locale->text('Date Format')
- . qq|</th>|;
- $column_header{output_longdates} =
- qq|<th class=listheading>|
- . $locale->text('Long Dates')
- . qq|</th>|;
-
- $form->header;
-
- print qq|
-<body>
-
-<table width=100%>
- <tr>
- <th class=listtop>$form->{title}</th>
- </tr>
- <tr height="5"></tr>
- <tr>
- <td>
- <table width=100%>
- <tr class=listheading>
-|;
-
- map { print "$column_header{$_}\n" } @column_index;
-
- print qq|
- </tr>
-|;
-
- my ($i, %column_data);
- foreach my $ref (@{ $form->{ALL} }) {
-
- $i++;
- $i %= 2;