修改源码模板路径

This commit is contained in:
virusdefender 2015-08-25 16:18:24 +08:00
parent 89c42dac85
commit f5bca2428b
44 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ from rest_framework.views import APIView
class AdminTemplateView(APIView): class AdminTemplateView(APIView):
def get(self, request, template_dir, template_name): def get(self, request, template_dir, template_name):
path = settings.TEMPLATE_DIRS[0] + "/admin/" + template_dir + "/" + template_name + ".html" path = settings.TEMPLATES[0]["DIRS"][0] + "/admin/" + template_dir + "/" + template_name + ".html"
try: try:
return HttpResponse(open(path).read(), content_type="text/html") return HttpResponse(open(path).read(), content_type="text/html")
except IOError: except IOError:

View File

@ -78,7 +78,7 @@ ROOT_URLCONF = 'oj.urls'
TEMPLATES = [ TEMPLATES = [
{ {
'BACKEND': 'django.template.backends.django.DjangoTemplates', 'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'template')], 'DIRS': [os.path.join(BASE_DIR, 'template/src')],
'APP_DIRS': True, 'APP_DIRS': True,
'OPTIONS': { 'OPTIONS': {
'context_processors': [ 'context_processors': [
@ -116,7 +116,7 @@ STATIC_URL = '/static/'
STATICFILES_DIRS = (os.path.join(BASE_DIR, "static/src/"),) STATICFILES_DIRS = (os.path.join(BASE_DIR, "static/src/"),)
TEMPLATE_DIRS = ( TEMPLATE_DIRS = (
os.path.join(BASE_DIR, "template"), os.path.join(BASE_DIR, "template/src"),
) )
AUTH_USER_MODEL = 'account.User' AUTH_USER_MODEL = 'account.User'