ユーザーがPDFファイルをダウンロードして表示するのではなく、DjangoビューでPDFファイルを表示することは可能ですか?
また、それが可能である場合、どのように行われますか?
これは私がこれまでに持っているものです -
@login_required
def resume(request, applicant_id):
#Get the applicant's resume
resume = File.objects.get(applicant=applicant_id)
fsock = open(resume.location, 'r')
response = HttpResponse(fsock, mimetype='application/pdf')
return response