I have used Django MultiValueDict many times and all the times either I use the entire list stored with a key or I want to use the first value from the list. A common use case is use it as form initial data.
My problem is that by default Django MultiValueDict's get method returns last element.
Do I have to override getitem of MultiValueDict or is there any better alternative ?