摘要:
出现如图报错:django.template.exceptions.TemplateDoesNotExist: xadmin/templates/login.html 解决方法:将views改为templates 阅读全文
摘要:
一、在项目下新建apps目录,包含的app项目均放至apps文件夹下 把鼠标放在apps上右击鼠标,选择 Mark Directory as -> Sources Root 点击 二、配置 在settings.py中添加: # 添加 apps 目录 sys.path.insert(0, os.pat 阅读全文
摘要:
一个python项目下面可以建立多个APP,每个APP里面都可以建立templates目录用于存放模板文件,而且APP外面还有一个公用模板存放的目录templates。 一、公共模板下的templates TEMPLATES = [ { 'BACKEND': 'django.template.bac 阅读全文