Django:如何更改管理站点上的用户视图?
我是 Django 新手,所以我有一个关于管理站点的问题。我想修改用户视图。我想在用户表中添加一些按钮(例如“激活”)或链接。但我找不到任何可以修改它的脚本。
I'm new in Django, so I have a question about the admin site. I want to modify the user view. I want add some buttons(e.g. "activate") or links in the User-table. But I cannot find any script, where I could modify it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否也有兴趣增强 Django 用户模型的行为?如果只是修改管理区域中的演示文稿,请查看 Django 文档。通过将 admin.py 文件添加到您的应用程序并引用 ModelAdmin 类来自定义管理 UI。来自文档:
Are you interested augmenting the behavior of the Django Users model as well? If it's just modifying the presentation in the admin area, have a look at the Django docs. The admin UI is customized by adding an admin.py file to your application and referencing the ModelAdmin class. From the docs:
按钮和链接听起来好像可以在模板中完成。您可能想要覆盖呈现用户表单的 add_form.html,但您需要在模板目录中具有此层次结构。
此表单扩展了“admin/change_form.html”。作为参考,请查看实际代码 在线。
Buttons and links sound like it can be done in the template. You may want to override add_form.html which renders the User form but you need to have this hierarchy in your templates directory
This form extends "admin/change_form.html". For your reference, check out the actual code online.