﻿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
34475	bug in django tutorial	DoyunKim	nobody	"there is a bug in html source at django tutorial
https://docs.djangoproject.com/ko/4.1/intro/tutorial04/
at this example
{{{
<h1>{{ question.question_text }}</h1>

<ul>
{% for choice in question.choice_set.all %}
    <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
{% endfor %}
</ul>

<a href=""{% url 'polls:detail' question.id %}"">Vote again?</a>
}}}


{{{
{{ choice.choice_text }} -- {{ choice.votes }}
}}}

this code should be changed to below


{{{
{{ choice.choice_text }} - {{ choice.votes }}
}}}
"	Bug	closed	Documentation	4.1	Normal	invalid			Unreviewed	0	0	0	0	0	0
