12 lines
317 B
Python
12 lines
317 B
Python
from django.shortcuts import render
|
|
from django.views.decorators.clickjacking import xframe_options_exempt
|
|
|
|
|
|
@xframe_options_exempt
|
|
def quote_upload(request):
|
|
"""
|
|
Simple embeddable quote upload box.
|
|
TODO: Implement file upload and email integration
|
|
"""
|
|
return render(request, 'quote_upload.html')
|