2011-12-23 06:38:02 +08:00
|
|
|
import os
|
2015-01-28 20:35:27 +08:00
|
|
|
|
2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import path
|
2014-08-12 22:54:42 +08:00
|
|
|
from django.views.static import serve
|
2011-12-23 06:38:02 +08:00
|
|
|
|
2017-01-20 21:01:02 +08:00
|
|
|
here = os.path.dirname(__file__)
|
2011-12-23 06:38:02 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path('custom_templates/<path:path>', serve, {
|
|
|
|
'document_root': os.path.join(here, 'custom_templates')}),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|