添加视图到 Django 管理

发布于 2024-12-02 19:16:51 字数 123 浏览 0 评论 0原文

有没有办法将自定义视图添加到 Django 管理应用程序?

具体来说,我希望能够将“内容”div 切换为自定义静态内容,同时保留“页眉”和“页脚”div。这与重定向到静态 HTML 页面不同,后者不会保留页眉和页脚。

Is there a way to add custom views to the Django admin app?

To be specific, I would like to be able to switch out the "content" div for custom static content, while preserving the "header" and "footer" divs. This is different than redirecting to a static HTML page, which would not preserve the header and footer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

无悔心 2024-12-09 19:16:52

您只需照常配置视图(urls.py -> myapp.views),然后扩展管理基本模板:

{% extends "admin/base_site.html" %}
{% block content %}
    My content looking like the rest of the admin app.
{% endblock %}

You just configure your view as usual (urls.py -> myapp.views) and then extend the admin base template:

{% extends "admin/base_site.html" %}
{% block content %}
    My content looking like the rest of the admin app.
{% endblock %}
花海 2024-12-09 19:16:52

Here is a small intro http://www.djangobook.com/en/1.0/chapter17/, I think where is new version, but I think where is nothing changed in concept of extending admin pages.

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