我试图从其他应用渲染到模板但不确定如何导入或者我是否应该使用模板导入?
结构是
project->
main app->
templates->
pages->
home.html
account ->
current app->
views.py
我的views.py文件位于当前应用程序中,并且正在尝试访问主应用程序中的模板(在页面子文件夹中)。
我将如何呈现它:
def temp_view(request):
....
return render(request, "home.html",context)
答案 0 :(得分:4)
首先,您应该最有可能在 settings.py 中使用与此类似的方式配置模板静态路径
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, "templates")],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.i18n',
],
},
},
]
APP_DIRS=True
表示Django将在您的案例main_app/
和current_app/
中的每个应用目录中查找模板:
您只需提及模板路径,将其视为根路径,简单地说:
def temp_view(request):
....
return render(request, "pages/home.html",context)
Django将在main_app/
目录下查找文件 pages/home.html
答案 1 :(得分:-1)
在您要呈现的同一个应用中创建视图会更简单吗?
from mainapp.models import mainappmodel
def currentappview(request):
all = mainappmodel.objects.all()
return render(request, "pages/home.html", {'all': all})