updated ungleich
This commit is contained in:
parent
5fd4275046
commit
24badb1a9c
15 changed files with 258 additions and 14 deletions
|
|
@ -132,7 +132,12 @@ TEMPLATES = [
|
|||
{
|
||||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [os.path.join(PROJECT_DIR,'cms_templates/'),
|
||||
os.path.join(PROJECT_DIR,'cms_templates/djangocms_blog/')
|
||||
os.path.join(PROJECT_DIR,'cms_templates/djangocms_blog/'),
|
||||
os.path.join(PROJECT_DIR,'membership'),
|
||||
os.path.join(PROJECT_DIR,'ungleich/templates/djangocms_blog/'),
|
||||
os.path.join(PROJECT_DIR,'ungleich/templates/cms/ungleichch'),
|
||||
os.path.join(PROJECT_DIR,'ungleich/templates/ungleich')
|
||||
|
||||
],
|
||||
'APP_DIRS': True,
|
||||
'OPTIONS': {
|
||||
|
|
@ -162,8 +167,11 @@ CMS_TEMPLATES = (
|
|||
('contact.html', gettext('DG.Contact')),
|
||||
('index.html', gettext('DG.Home')),
|
||||
('letscowork.html', gettext('DG.CoWork')),
|
||||
('detail.html', gettext('DG.Detail')),
|
||||
('one_column.html', gettext('DG.OneColumn'))
|
||||
# ('detail.html', gettext('DG.Detail')),
|
||||
('one_column.html', gettext('DG.OneColumn')),
|
||||
#ungleich
|
||||
('blog_ungleich.html', gettext('Blog')),
|
||||
('page.html', gettext('Page')),
|
||||
)
|
||||
|
||||
DATABASES = {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@ urlpatterns = [
|
|||
|
||||
# note the django CMS URLs included via i18n_patterns
|
||||
urlpatterns += i18n_patterns('',
|
||||
url(r'^$',include('ungleich.urls')),
|
||||
url(r'^blog/',include('ungleich.urls',namespace='ungleich')),
|
||||
url(r'^login/',include(membership_urls)),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
url(r'^digitalglarus/', include('digitalglarus.urls',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue