Adapted Code for Django 1.11 and Python 3,
updated the CKEditor
This commit is contained in:
@@ -4,12 +4,11 @@ Created on 03.10.2011
|
||||
|
||||
@author: christian
|
||||
"""
|
||||
from django.conf.urls import * # @UnusedWildImport
|
||||
from django.conf.urls import url
|
||||
from .views import ImageList, PageList
|
||||
|
||||
|
||||
urlpatterns = patterns(
|
||||
'content.views',
|
||||
urlpatterns = [
|
||||
url(r'^image_list.js$', ImageList.as_view(), name='content-image-list'),
|
||||
url(r'^link_list.js$', PageList.as_view(), name='content-page-list'),
|
||||
)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user