From 738d3ec0bee8276d811704a86329f4da65268c05 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Wed, 27 Nov 2002 05:09:09 +0000 Subject: Bug 181221 - CSV reports on 2-d tables have header messed up. Patch by gerv; r=joel, a=justdave. --- template/en/default/reports/report-table.csv.tmpl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'template/en/default/reports/report-table.csv.tmpl') diff --git a/template/en/default/reports/report-table.csv.tmpl b/template/en/default/reports/report-table.csv.tmpl index 60f3a4eef..3e702f396 100644 --- a/template/en/default/reports/report-table.csv.tmpl +++ b/template/en/default/reports/report-table.csv.tmpl @@ -26,10 +26,14 @@ [% col_field_disp = field_descs.$col_field || col_field %] [% row_field_disp = field_descs.$row_field || row_field %] -[% "$tbl_field_disp: $tbl\n" FILTER csv IF tbl_field %] -[% row_field_disp FILTER csv IF row_field %] -[% " / " IF col_field AND row_field %] -[% col_field_disp FILTER csv %], +[% title = BLOCK %] + [% "$tbl_field_disp: $tbl\n" IF tbl_field %] + [% row_field_disp IF row_field %] + [% " / " IF col_field AND row_field %] + [% col_field_disp %] +[% END %] + +[% title FILTER csv %], [% IF col_field -%] [% FOREACH col = col_names -%] [% col FILTER csv -%], -- cgit v1.2.3-24-g4f1b