11 lines
220 B
Python
11 lines
220 B
Python
from django.views.generic import View
|
|
from django.http import HttpResponse
|
|
|
|
|
|
class PDFFormFillerEditorView(View):
|
|
def get(self, request, pdf=""):
|
|
|
|
|
|
return HttpResponse("response from editor view %s" % pdf)
|
|
|
|
|