I need help with exporting data using a template. I installed django-import-export and added it to admin panel, now I can only export data from the admin panel. I want to know how can i export excel file using template.
Advertisement
Answer
This should get you started:
JavaScript
x
24
24
1
import StringIO
2
import xlsxwriter
3
from django.http import HttpResponse
4
5
def export_page(request):
6
# create our spreadsheet. I will create it in memory with a StringIO
7
output = StringIO.StringIO()
8
workbook = xlsxwriter.Workbook(output)
9
worksheet = workbook.add_worksheet()
10
worksheet.write('A1', 'Some Data')
11
workbook.close()
12
13
# create a response
14
response = HttpResponse(content_type='application/vnd.ms-excel')
15
16
# tell the browser what the file is named
17
response['Content-Disposition'] = 'attachment;filename="some_file_name.xlsx"'
18
19
# put the spreadsheet data into the response
20
response.write(output.getvalue())
21
22
# return the response
23
return response
24