With a form i process data from a csv file in a view. Now i want to display this dataframe in a table. I have this dataframe 'store' in one view but i have no idea how to display it.
here is my view function: i take input from form and use it to process numbers in a df from a csv. Now this new df i want to display to the user but i have no idea what to do with this new df 'carsnorm'
'''
def prioinput(request):
form = forms.InputParams(request.POST, request.FILES)
if form.is_valid():
carsnorm.sort_values(by=['mean'],ascending=0)
return render(request, 'cars4you/prioinput.html',{'form':form})
'''