quickinfo search form: allow iframe embedding

This commit is contained in:
Seth Ladygo
2019-08-02 17:20:39 -07:00
parent d69f25926c
commit 6818847506

View File

@ -2,10 +2,12 @@ import re
from django.shortcuts import render, get_object_or_404 from django.shortcuts import render, get_object_or_404
from django.core.exceptions import ObjectDoesNotExist from django.core.exceptions import ObjectDoesNotExist
from django.views.decorators.clickjacking import xframe_options_exempt
from products.models import Product, ProductImage, ProductImageFormat from products.models import Product, ProductImage, ProductImageFormat
@xframe_options_exempt
def search(request): def search(request):
return render(request, 'quickinfo/search.html') return render(request, 'quickinfo/search.html')