7 lines
234 B
Python
7 lines
234 B
Python
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'),
|
|
)
|
|
|