Initial commit
This commit is contained in:
commit
416a8811b3
8 changed files with 64 additions and 0 deletions
0
views/__init__.py
Normal file
0
views/__init__.py
Normal file
11
views/editor.py
Normal file
11
views/editor.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
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)
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue