poll: fixed a ***** bug

This commit is contained in:
Eldeberen 2021-02-20 18:31:40 +01:00
parent 5efcadb23e
commit e2c84df6e3
Signed by untrusted user: Darks
GPG Key ID: 7515644268BE1433
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<fieldset>
{% for choice in poll.choices %}
<input type="radio" id="{{ poll.id }}-{{ choice.id }}" name="pollanwsers" value="{{ choice.id }}" />
<label for="{{ poll.id }}-{{ choice.id }}">{{ choice.title }}</label><br>
<label for="{{ poll.id }}-{{ choice.id }}">{{ choice.title }}</label><br/>
{% endfor %}
</fieldset>
{% endmacro %}