Files
mayan-edms/mayan/apps/templating/urls.py
Roberto Rosario 466f15e154 Move template sandbox to its own app
Improve UI for the sandbox template textarea.

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-11-11 02:59:26 -04:00

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'
),
]