﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
36254	Documentation 'Selecting the current time zone' code error	YQ		"ValueError at /set_timezone/
Need 2 values to unpack in for loop; got 6. 
Request Method:	GET
Request URL:	http://127.0.0.1:8000/set_timezone/
Django Version:	5.2b1
Exception Type:	ValueError
Exception Value:	
Need 2 values to unpack in for loop; got 6. 

{{{
common_timezones = {
    ""London"": ""Europe/London"",
    ""Paris"": ""Europe/Paris"",
    ""New York"": ""America/New_York"",
}

...

return render(request, ""template.html"", {""timezones"": common_timezones})

...

# template.html
{% for city, tz in timezones %}  # Error : Need 2 values to unpack in for loop; got 6. 
... 

}}}

it should be 
{{{
{% for city, tz in timezones.items %}
}}}


"	Bug	new	Documentation	5.2	Normal		timezone items		Unreviewed	0	0	0	0	0	0
