Added field extraction and model creation

This commit is contained in:
Mark Riedesel 2013-10-15 23:47:32 -05:00
parent 8131e77dd9
commit 1a5910f1ef
4 changed files with 177 additions and 5 deletions

View file

@ -2,6 +2,6 @@ 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'),
url(r'^(?P<pdf>.*)/edit/$', editor.PDFFormFillerEditor.as_view(), name='pdfformfiller-edit'),
)