Skip to content

Commit cd8a328

Browse files
committed
fix template
1 parent 9a02486 commit cd8a328

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

demos/polls/aiohttpdemo_polls/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>Poll admin demo: <a href="/admin">admin page</a></h1>
1111
{% if questions %}
1212
<ul>
1313
{% for question in questions %}
14-
<li><a href="{{ url('poll', question_id=question.id) }}">{{ question.question_text }}</a></li>
14+
<li><a href="{{ url('poll', question_id=question.id|string) }}">{{ question.question_text }}</a></li>
1515
{% endfor %}
1616
</ul>
1717
{% else %}

0 commit comments

Comments
 (0)