Opened 16 years ago

Last modified 13 years ago

#8433 closed

auth add_view popup — at Initial Version

Reported by: sorl Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

add_view should probably be:

if "_addanother" in request.POST:

request.user.message_set.create(message=msg)
return HttpResponseRedirect(request.path)

+ elif '_popup' in request.REQUEST:
+ return self.response_add(request, new_user)

else:

request.user.message_set.create(message=msg + ' ' + ugettext("You may edit it again below."))
return HttpResponseRedirect('../%s/' % new_user.id)

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top