我在应用程序中使用Django和基本模板。我想在我的html页面中引用string fileName = ConfigurationManager.AppSettings["Don't know file name"];
string pathUser = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string pathDownload = Path.Combine(pathUser, "Downloads");
DirectoryInfo downloadDir = new DirectoryInfo(pathDownload);
FileInfo[] files = downloadDir.GetFiles("*.pdf");
var file = files.Where(x => x.Name.Replace(" ", "") == fileName + ".pdf").FirstOrDefault();
fileName = file.FullName;
标签中的另一个html页面。我该如何实现?我收到页面未找到错误,仅是因为它将从我的src
目录中找到。
例如,我具有以下结构:
installed_apps
我想在base.html文件中提供链接(src =“ template.html”)。//我该如何给出?这取决于我在smart_chat
- client
migrations
init_py
urls.py
views.py
models.py
forms.py
app
migrations
init_py
urls.py
views.py
models.py
forms.py
smart_chat
settings.py
migrations
urls.py
wsgi.py
static
css
js
images
templates
base.html
template.html
文件中提到的结构和设置。
在我的settings.py
文件中,我提到了这一点:
settings.py
]
但是我仍然出现页面未找到错误。我该如何实现?预先感谢!
答案 0 :(得分:0)
使用django DTL将一个模板扩展到另一个模板
{% extends "base.html" %}
{% block title %}{{ section.title }}{% endblock %}
{% block content %}
{% endblock %}