Skip to content

Commit 2d391ef

Browse files
committed
Merge branch 'master' of github.com:gchandrasa/idpythonproject
Conflicts: idpython/urls.py
2 parents cd47a18 + 835e62c commit 2d391ef

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

idpython/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# timezone as the operating system.
3131
# If running in a Windows environment this must be set to the same as your
3232
# system time zone.
33-
TIME_ZONE = 'America/Chicago'
33+
TIME_ZONE = 'Asia/Jakarta'
3434

3535
# Language code for this installation. All choices can be found here:
3636
# http://www.i18nguy.com/unicode/language-identifiers.html
@@ -138,7 +138,7 @@
138138
'django.contrib.messages',
139139
'django.contrib.staticfiles',
140140
# Uncomment the next line to enable the admin:
141-
# 'django.contrib.admin',
141+
'django.contrib.admin',
142142
# Uncomment the next line to enable admin documentation:
143143
# 'django.contrib.admindocs',
144144

idpython/urls.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from django.conf.urls import patterns, include, url
22

33
# Uncomment the next two lines to enable the admin:
4-
# from django.contrib import admin
5-
# admin.autodiscover()
4+
from django.contrib import admin
5+
admin.autodiscover()
66

77
urlpatterns = patterns('',
88
# Examples:
@@ -16,4 +16,5 @@
1616
# url(r'^admin/', include(admin.site.urls)),
1717
#(r'^admin/', include(admin.site.urls)),
1818
url(r'^', include('cms.urls')),
19+
url(r'^admin/', include(admin.site.urls)),
1920
)

0 commit comments

Comments
 (0)