2012-07-19 71 views

回答

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) 
相關問題