home added and assigned right template
This commit is contained in:
parent
b411479283
commit
36b99b93ef
12 changed files with 156 additions and 42 deletions
|
|
@ -27,9 +27,6 @@ PROJECT_DIR = os.path.abspath(
|
|||
# load .env file
|
||||
dotenv.read_dotenv("{0}/.env".format(PROJECT_DIR))
|
||||
|
||||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
|
||||
|
||||
SITE_ID = 1
|
||||
|
||||
APP_ROOT_ENDPOINT = "/"
|
||||
|
|
@ -165,7 +162,7 @@ CMS_TEMPLATES = (
|
|||
('two_columns.html', gettext('3 Column')),
|
||||
('about.html', gettext('DG.About')),
|
||||
('contact.html', gettext('DG.Contact')),
|
||||
('index.html', gettext('DG.Home')),
|
||||
('home_digitalglarus.html', gettext('DG.Home')),
|
||||
('letscowork.html', gettext('DG.CoWork')),
|
||||
# ('detail.html', gettext('DG.Detail')),
|
||||
('one_column.html', gettext('DG.OneColumn')),
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ urlpatterns = [
|
|||
|
||||
# note the django CMS URLs included via i18n_patterns
|
||||
urlpatterns += i18n_patterns('',
|
||||
url(r'^$',include('ungleich.urls')),
|
||||
# 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)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue