diff options
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/change-columns.html.tmpl | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/template/en/default/list/change-columns.html.tmpl b/template/en/default/list/change-columns.html.tmpl index 3f2122b38..aae74d019 100644 --- a/template/en/default/list/change-columns.html.tmpl +++ b/template/en/default/list/change-columns.html.tmpl @@ -28,18 +28,33 @@ this feature requires cookies to work. </p> -[% FOREACH column = masterlist %] - [% desc.${column} = column %] -[% END %] -[% desc.summary = "Summary (first 60 characters)" %] -[% desc.summaryfull = "Full Summary" %] +[% desc = { "opendate" => "Open Date", + "changeddate" => "Last Changed Date", + "severity" => "Severity", + "priority" => "Priority", + "platform" => "Hardware", + "owner" => "Owner", + "reporter" => "Reporter", + "status" => "Status", + "resolution" => "Resolution", + "product" => "Product", + "component" => "Component", + "version" => "Version", + "os" => "OS", + "votes" => "Votes", + "keywords" => "Keywords", + "target_milestone" => "Target", + "qa_contact" => "QA Contact", + "status_whiteboard" => "Whiteboard", + "summary" => "Summary (first 60 characters)", + "summaryfull" => "Full Summary" } %] <form action="colchange.cgi"> <input type="hidden" name="rememberedquery" value="[% buffer %]"> [% FOREACH column = masterlist %] <input type="checkbox" id="[% column %]" name="column_[% column %]" [% "checked='checked'" IF lsearch(collist, column) != -1 %]> - <label for="[% column %]">[% desc.${column} %]</label> + <label for="[% column %]">[% desc.${column} || column %]</label> <br> [% END %] |