diff options
Diffstat (limited to 'template/en/default/admin/params/index.html.tmpl')
-rw-r--r-- | template/en/default/admin/params/index.html.tmpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/template/en/default/admin/params/index.html.tmpl b/template/en/default/admin/params/index.html.tmpl index bfa3e2c43..1629c8c6f 100644 --- a/template/en/default/admin/params/index.html.tmpl +++ b/template/en/default/admin/params/index.html.tmpl @@ -16,6 +16,7 @@ # Rights Reserved. # # Contributor(s): Frédéric Buclin <LpSolit@gmail.com> + # Nitish Bezzala <nbezzala@yahoo.com> #%] <p> @@ -32,11 +33,13 @@ [% FOREACH panel = panels %] [% FOREACH param = panel.param_list.sort('name') %] <tr> - <td>[% param.name FILTER html %]</td> <td> <a href="editparams.cgi?section= - [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]"> - [% panel.title FILTER html %]</a> + [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]"> + [% param.name FILTER html %]</a> + </td> + <td> + [% panel.title FILTER html %] </td> </tr> [% END %] |