In the /edit/location/ view, the dropdown menu with countries is ordered by
country code when it should be by display value.
It would make it easier for the user if it was ordered by display value.
As I don't like hacking/patching core codes I've overridden the location
view passing it my "class CustomLocationForm(LocationForm)"
self.fields['country'].choices = sorted(COUNTRIES, key=lambda o: o[1])
This is on django-profile 0.6
Original issue reported on code.google.com by andre.mi...@gmail.com on 9 Nov 2009 at 4:47
Original issue reported on code.google.com by
andre.mi...@gmail.com
on 9 Nov 2009 at 4:47