如何在django管理站点中实现像User模型这样的普通模型管理员

时间:2012-07-19 06:30:59

标签: django admin

众所周知,在django管理站点中添加新用户后,页面将重定向到编辑配置文件,而不是其他模型的用户列表页面。如何在普通模型中实现这一点?例如,我定义了一个名为Image的模型,并希望在上传图像后编辑图像。

1 个答案:

答案 0 :(得分:0)

将以下功能放入您的管理类。

的django /了contrib / AUTH / admin.py:L139

def response_add(self, request, obj, post_url_continue='../%s/'):
    """
    Determines the HttpResponse for the add_view stage. It mostly defers to
    its superclass implementation but is customized because the User model
    has a slightly different workflow.
    """
    # We should allow further modification of the user just added i.e. the
    # 'Save' button should behave like the 'Save and continue editing'
    # button except in two scenarios:
    # * The user has pressed the 'Save and add another' button
    # * We are adding a user in a popup
    if '_addanother' not in request.POST and '_popup' not in request.POST:
        request.POST['_continue'] = 1
    return super(UserAdmin, self).response_add(request, obj, post_url_continue)