我认为无论出于何种原因这很容易做到,但我看得更深,似乎没有直接的方法允许用户在实例的“更改”视图上执行自定义管理操作(即,当你只是查看单个实例的编辑屏幕,而不是实例列表。
我是否忽视了这样做的简单方法?或者我唯一的选择是覆盖其中一个管理模板(可能还有ModelAdmin.add_view
方法)?
答案 0 :(得分:18)
以下是this答案的更新和改进。它适用于django 1.6并重定向到你来自的地方。
class ActionInChangeFormMixin(object):
def response_action(self, request, queryset):
"""
Prefer http referer for redirect
"""
response = super(ActionInChangeFormMixin, self).response_action(request,
queryset)
if isinstance(response, HttpResponseRedirect):
response['Location'] = request.META.get('HTTP_REFERER', response.url)
return response
def change_view(self, request, object_id, extra_context=None):
actions = self.get_actions(request)
if actions:
action_form = self.action_form(auto_id=None)
action_form.fields['action'].choices = self.get_action_choices(request)
else:
action_form = None
extra_context=extra_context or {}
extra_context['action_form'] = action_form
return super(ActionInChangeFormMixin, self).change_view(request, object_id, extra_context=extra_context)
class MyModelAdmin(ActionInChangeFormMixin, ModelAdmin):
......
模板:
{% extends "admin/change_form.html" %}
{% load i18n admin_static admin_list admin_urls %}
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static "admin/css/changelists.css" %}" />
{% endblock %}
{% block object-tools %}
{{ block.super }}
<div id="changelist">
<form action="{% url opts|admin_urlname:'changelist' %}" method="POST">{% csrf_token %}
{% admin_actions %}
<input type="hidden" name="_selected_action" value="{{ object_id }}">
</form>
</div>
{% endblock %}
答案 1 :(得分:10)
这是我最终做的事情。
首先,我扩展了ModelAdmin对象的change_view,如下所示:
def change_view(self, request, object_id, extra_context=None):
actions = self.get_actions(request)
if actions:
action_form = self.action_form(auto_id=None)
action_form.fields['action'].choices = self.get_action_choices(request)
else:
action_form = None
changelist_url = urlresolvers.reverse('admin:checkout_order_changelist')
return super(OrderAdmin, self).change_view(request, object_id, extra_context={
'action_form': action_form,
'changelist_url': changelist_url
})
基本上我们只是收集填充更改视图中操作下拉列表所需的数据。
然后我只为相关模型扩展了change_form.html:
{% extends "admin/change_form.html" %}
{% load i18n adminmedia admin_list %}
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/changelists.css" />
{% endblock %}
{% block object-tools %}
{{ block.super }}
<div id="changelist">
<form action="{{ changelist_url }}" method="POST">{% csrf_token %}
{% admin_actions %}
<input type="hidden" name="_selected_action" value="{{ object_id }}">
</form>
</div>
{% endblock %}
这与在更改列表视图中输出管理操作部分的方式几乎相同。主要区别在于:1)我必须指定要发布到的表单的URL,2)而不是用于指定应更改哪些对象的复选框,通过隐藏表单字段设置值,以及3)我在更改列表视图中包含了CSS,并将操作停留在ID为#changelist
的div中 - 只是这样该框看起来还不错。
这不是一个很好的解决方案,但它可以正常运行,无需额外配置即可添加其他操作。
答案 2 :(得分:2)
我所做的是创建自己的MYAPP / templates / admin / MYMODEL / change_form.html模板:
{% extends "admin/change_form.html" %}
{% load i18n %}
{% block object-tools %}
{% if change %}{% if not is_popup %}
<ul class="object-tools">
<li><a href="{% url MY_COMMAND_VIEW original.id %}" class="historylink" >MY COMMAND</a></li>
<li><a href="history/" class="historylink">{% trans "History" %}</a></li>
{% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans "View on site" %}</a></li>{% endif%}
</ul>
{% endif %}{% endif %}
{% endblock %}
所以我基本上只改变了历史链接和“网站上的视图”链接所在的块“对象工具”。原始的change_form.html的其余部分保持不变。 BTW:“original.id”是您正在编辑的模型的ID。