python - Wie ändere ich view_site auf der Django-Administrator-Homepage in die gewünschte URL? (Versuchen Sie, den Django-Quellcode nicht zu ändern.)
我想大声告诉你
我想大声告诉你 2017-06-22 11:51:22
0
2
708


Ändern Sie es beispielsweise in „www.baidu.com“

我想大声告诉你
我想大声告诉你

Antworte allen(2)
小葫芦

我看了一下django(1.9.8)源码,这个链接确实是源码里(/path/to/python/site-packages/django/contrib/admin/sites.py)写死的 site_url = '/',然后在html(/path/to/python/site-packages/django/contrib/admin/templates/admin/base.html)里引用 href="{{ site_url }}" ,并没有在settings.py 定一个常量什么的。
你要是实在不想修改源码的话,试试在./settings.py TEMPLATES里最后面增加一个自定义的context_processors,在这里面也定义一个 site_url = '/xxx/' 试试能不能实现(我没有测试过)。
流程:
1、新建一个 self_context_processors.py,内容:

def set_url(request):

    return {'site_url': '/xxx/'}

2、在settings TEMPLATE context_processor最下面增加:
'self_context_processors.set_url',

Peter_Zhu

最粗暴的办法,把site-packages/django/contrib/admin/templates/admin/base.html拷贝到你的项目目录/templates/admin/base.html,然后修改href="你要的url"

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage