django url 生效_django 定制管理页面外观 模板文件不生效的解决方法

在学习Django教程时,遇到定制管理页面外观的问题,模板文件base_site.html复制到templates目录并修改settings.py后无法生效。解决方法是找到原来已定义的TEMPLATE_DIRS,将其内容添加到TEMPLATE的DIRs属性中,而非重复定义。这样可以确保模板路径正确,使定制的管理页面外观生效。
摘要由CSDN通过智能技术生成

问题描述:大概过程跟下面描述的同样,简单来讲就是照着例子学习的时候定制管理页面外观,按照文档要求拷贝了base_site.html文件到templates目录下,而且按照要求修改了settings.py文件以后,模板文件死活不生效的问题。html

百度了好久,看到很多遇到这个问题的帖子,可是都没有明确是怎么解决的。python

解决方法: 文档要求在settings.py后面添加这么一段sql

mysite/settings.py:django

TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]

可是在settings.py文件中实际上已经定义了TEMPLATE_DIRS了,在后面再加一段这个设置属于重定义,正确的写法应该是找到前面的TEMPLATE=学习

在后面的DIR属性中增长上面的代码就能够了,不须要单独在settings.py后面加这段完整代码。url

代码示例: code

做为一个django新手,例子程序也不写清楚一点,能想到重复定义,并去试了试把TEMPLATE_DIRS 的内容直接改到TEMPLATE里面去也是服了我本身了。无论怎么样,终于解决了一个问题。server

下面是这个问题的详细描述,在网上百度解决方案时找到的,跟个人状况是同样的。sqlite

I am working through https://docs.djangoproject.com/en/1.7/intro/tutorial02

so far all went fine - but now *templates changes just don't work.*

I think there must be a flaw in that tutorial, something missing,

or something different in django 1.7.1 ?

https://docs.djangoproject.com/en/1.7/intro/tutorial02/#customize-the-admin-look-and-feel

my versions:

python -c "import django; print(django.get_version())"

1.7.1

python --version

Python 2.7.3

*SYMPTOM:*

my changes in

mysite/templates/admin/base_site.html

are simply ignored.

These are my files:

mysite# tree

.

├── db.sqlite3

├── manage.py

├── mysite

│ ├── __init__.py

│ ├── settings.py

│ ├── urls.py

│ └── wsgi.py

├── polls

│ ├── admin.py

│ ├── __init__.py

│ ├── migrations

│ │ ├── 0001_initial.py

│ │ └── __init__.py

│ ├── models.py

│ ├── tests.py

│ └── views.py

└── templates

└── admin

└── base_site.html

mysite/settings.py:

TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]

*Whatever I do, the page*

*http://myserver:8000/admin/polls/question/

*

*still keeps the old title 'Django administration'*

I want to understand how templates work, because I need them for my real

project.

Thanks a lot!htm

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值