In my application i am using a search function which search and display the output.I include search for fromdate and todate
,Keyword search
etc.
I want to export the searched result in a .csv
file.Currently i had written a function called csv_export
and exporting all the report in .csv.I want to know how to export the searched item in a .csv file.
forms.py for search
class SearchFilterForm(Form):
location = forms.ChoiceField(widget=forms.Select(), choices='',required=False)
type = forms.ChoiceField(widget=forms.Select(), choices='',required=False)
fromdate = forms.CharField(widget=forms.TextInput(attrs={'placeholder': 'dd/mm/yyyy','class':'datefield','readonly':'readonly'}))
todate = forms.CharField(widget=forms.TextInput(attrs={'placeholder': 'dd/mm/yyyy','class':'datefield','readonly':'readonly'}))
search_keyword = forms.CharField(widget=forms.TextInput(attrs={'placeholder': 'Keyword Search','class':'keyword-search'}))
views.py for search
def search(request):
"""Search reports using filters
"""
user = request.user
report_list = []
searchfilter = SearchFilterForm(user)
reports = Report.objects.filter(user=user)
if request.method == 'POST':
if 'search' in request.POST:
search_keyword = request.POST.get('search_keyword') #reports filter by keywords
reports = reports.filter(Q(incident_description__icontains=search_keyword)|Q(incident_number__icontains=search_keyword))
elif 'filter' in request.POST:
searchfilter = SearchFilterForm(user,request.POST)
loc_id = request.POST.get('location')
type_id = request.POST.get('type')
start_date = request.POST.get('fromdate')
end_date = request.POST.get('todate')
reportlist = []
""""""""""" #some stuff for search come here
if start_date or end_date:
if start_date and not end_date:
reports = reports.filter(created_date_time__gte=start_date)
elif not start_date and end_date:
reports = reports.filter(created_date_time__lte=end_date)
elif start_date and end_date:
reports = reports.filter(created_date_time__gt=start_date,created_date_time__lt=end_date)
for report in reports:
"""""" report iteration goes here
report_list.append(items)
return render(request, 'incident/search.html',
{'SearchKeywordForm':searchform,})
Apart from search button a button called save-spreadsheet
is their on the same search page,on clicking search button the searched items are come to display and while clicking save-spreadsheet
button the displayed items are exported to .csv
file.
Need help to do this.
Thanks