Django:如何更改管理站点上的用户视图?

发布于 2024-10-31 17:55:54 字数 86 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

維他命╮ 2024-11-07 17:55:54

您是否也有兴趣增强 Django 用户模型的行为?如果只是修改管理区域中的演示文稿,请查看 Django 文档。通过将 admin.py 文件添加到您的应用程序并引用 ModelAdmin 类来自定义管理 UI。来自文档:

对于每个模型,可以选择创建一个 ModelAdmin 类,该类封装该特定模型的自定义管理功能和选项。

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:

For each of those models, optionally create a ModelAdmin class that encapsulates the customized admin functionality and options for that particular model.

仅冇旳回忆 2024-11-07 17:55:54

按钮和链接听起来好像可以在模板中完成。您可能想要覆盖呈现用户表单的 add_form.html,但您需要在模板目录中具有此层次结构。

templates/
    admin/
        auth/
            user/
                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

templates/
    admin/
        auth/
            user/
                add_form.html

This form extends "admin/change_form.html". For your reference, check out the actual code online.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文