Improve UI for the sandbox template textarea. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
14 lines
301 B
Python
14 lines
301 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from .views import DocumentTemplateSandboxView
|
|
|
|
urlpatterns = [
|
|
url(
|
|
regex=r'^documents/(?P<pk>\d+)/sandbox/$',
|
|
view=DocumentTemplateSandboxView.as_view(),
|
|
name='document_template_sandbox'
|
|
),
|
|
]
|