姜戈。管理站点中表单的取消按钮

发布于 2024-12-07 05:02:38 字数 69 浏览 0 评论 0原文

管理站点中是否有任何功能允许实现每个添加/更改表单取消按钮,将我重定向到该表单对象的列表。我的意思是任何形式的通用解决方案。

Is there any functionality in admin site that allow to implement for every add/change form cancel button, that redirects me to list of that form objects. I mean some general solution for any form.

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

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

发布评论

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

评论(3

镜花水月 2024-12-14 05:02:38

在项目的 templates 目录中添加 admin/submit_line.html。使用默认的submit_line.html中的代码,并添加取消按钮。您可以将其链接到“../”,使其始终只上升一级。然后进行任何必要的 CSS 样式设置,使其看起来正确。

Add admin/submit_line.html in your project's templates directory. Use the code from the default submit_line.html, and add your cancel button. You can link it to just "../" to make it always just go up one level. Then do any necessary CSS styling to make it look right.

太阳公公是暖光 2024-12-14 05:02:38

创建一个文件:yourapp/templates/admin/submit_line.html

我使用 Bootstrap,但您可以轻松更改它

{% extends "admin/submit_line.html" %}

{% block submit-row %}

{{ block.super }}

<a href="../../" class="btn btn-secondary" style="color: white">Cancel</a>

{% endblock %}

确保您的应用程序位于 INSTALLED_APPS 中的“admin”之上。

在德语语言环境中看起来像这样:

cancel-button-in-django-admin

Create a file: yourapp/templates/admin/submit_line.html

I use Bootstrap, but you can change this easily

{% extends "admin/submit_line.html" %}

{% block submit-row %}

{{ block.super }}

<a href="../../" class="btn btn-secondary" style="color: white">Cancel</a>

{% endblock %}

Be sure that your application is above "admin" in INSTALLED_APPS.

Looks like this in German locale:

cancel-button-in-django-admin

清风无影 2024-12-14 05:02:38
<a href="{% url opts|admin_urlname:'changelist' %}"><input type="button" name="Cancel" value="Cancel"></a>

您可以在 admin/submit_line.html 内的任何位置添加此行

<a href="{% url opts|admin_urlname:'changelist' %}"><input type="button" name="Cancel" value="Cancel"></a>

You can this line anywhere inside admin/submit_line.html

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