Triaged
---
https://code.djangoproject.com/ticket/28975 - Skip automatic creation of
postgis extension if it already exists (accepted)
https://code.djangoproject.com/ticket/28980 - Make the autodetector
validate the type of one-off default values (accepted)
https://code.djangoproject.co
Is this what you are looking for?
from django.http import QueryDict
from collections import OrderedDict
class OrderedQueryDict(QueryDict, OrderedDict):
pass
my_dict = OrderedQueryDict(request.META['QUERY_STRING'])
print my_dict.items()
On Friday, January 5, 2018 at 5:07:41 PM UTC+2, Ole