I've created dataframe. Showing that data on front end side using django templates.
In that dataframe getting list for Business Segment
column.
But I want to remove that list and single quotes and show it like Bag | Cement
.
How can I do this using django template filters?
You can use Django's template tag join to concat your list values with characters of your choice:
{{ business_segment_list|join:" | " }}