mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
修改源码模板路径
This commit is contained in:
parent
89c42dac85
commit
f5bca2428b
@ -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:
|
||||||
|
|||||||
@ -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'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user