Initial commit

This commit is contained in:
Binh 2013-10-08 13:09:36 -05:00
commit 416a8811b3
8 changed files with 64 additions and 0 deletions

11
views/editor.py Normal file
View 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)