Hi all,
Any news on this simple patch ? Any ETA when it will be commited to
trunk ?
Regards, Alex
I see, but what you get on admin forms from GET is hardly expected. So
i guess this part in add_stage should be fixed ? I'll file a ticket for
it.
Lines 432-436 of django/contrib/admin/views/main.py
# Add default data.
new_data = manipulator.flatten_data()
# Override the
Yeah, its OK to have more than one value of the same param and wrap all
of them in the list. But when you have only one parameter value passed
making a list for it is at least inconsistent with the value you get
from request.GET['param'] which is just a scalar and this also breaks
some parts in ad
Hi all,
Is it expected behaviour when opening /foo/?test=1 request.GET['test']
returns 1, but request.GET returns {'test': ['1']}, where '1' is
enclosed in the list ? Shouldn't it also be just {'test': '1'} ?
Because of this you can see on the add forms in admin in text fields
values like ['bar']