diff options
-rw-r--r-- | apioforum/templates/view_thread.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html index aec9103..429621a 100644 --- a/apioforum/templates/view_thread.html +++ b/apioforum/templates/view_thread.html @@ -7,11 +7,11 @@ {%block content%} {% if poll %} <p>{{poll.title}}</p> -<ul> +<ol> {%for opt in poll.options%} - <li>#{{opt.option_idx}} - {{opt.text}} - {{opt.num or 0}}</li> + <li value="{{opt.option_idx}}"><i>{{opt.text}}</i>: {{opt.num or 0}} votes</li> {%endfor%} -</ul> +</ol> {{ vote_meter(poll) }} {% endif %} <div class="thread-top-bar"> |