7 lines
230 B
Python
7 lines
230 B
Python
from django.conf.urls import patterns, url
|
|
from pdfformfiller.views import editor
|
|
|
|
urlpatterns = patterns('pdfformfiller.views',
|
|
url(r'^(?P<pdf>.*)/edit/$', editor.PDFFormFillerEditor.as_view(), name='pdfformfiller-edit'),
|
|
)
|
|
|