Don't send it in that format in the first place. The standard way of sending multiple values for a single HTML is to send the parameter multiple times:
http://127.0.0.1:8000/auction/?status=omn&status=aad
which will correctly give you ['omn','aad']
when you use request.GET.getlist('status')
.