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

7
urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.conf.urls import patterns, url
from pdfformfiller.views import editor
urlpatterns = patterns('pdfformfiller.views',
url(r'^(?P<pdf>.*)/edit/$', editor.PDFFormFillerEditorView.as_view(), name='pdfformfiller-edit'),
)