django-csv-export-view
django-csv-export-view copied to clipboard
Narrow csv output
Is there an option to have the opportunity to keep "multiple values" in the same column? Most of csv renderers flatten such multiplications, so create new columns for them, but it would be fine to have the opportunity to keep the column structure and repeat rows instead (with iterating the multiple values in the same column). An example: for a, b, (c, d, e), f: a b c f a b d f a b e f would be the result. Is it possible to do this?