You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
347 B
Python
13 lines
347 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import url, include
|
|
from aldryn_django.utils import i18n_patterns
|
|
import aldryn_addons.urls
|
|
|
|
|
|
urlpatterns = [
|
|
# add your own patterns here
|
|
] + aldryn_addons.urls.patterns() + i18n_patterns(
|
|
# add your own i18n patterns here
|
|
*aldryn_addons.urls.i18n_patterns() # MUST be the last entry!
|
|
)
|