这是新功能-感谢您,这可能是一个相当简单的问题!
除了默认的admin(具有不同的功能)之外,我还将创建一个自定义管理站点来运行。我想使用一组不同的html模板,同时不影响默认管理员。
我尝试创建一个新的模板文件夹,但是在自定义管理员中未显示任何更改。
在我的admin.py中:
class CustomAdminSite(AdminSite):
# can override things here
# create the custom admin site
custom_admin_site = CustomAdminSite(name='customadmin')
如何在我的自定义管理网站上使用一组不同的模板,同时不影响默认管理员?