diff options
author | ubq323 <ubq323> | 2021-06-26 01:23:58 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-26 01:23:58 +0000 |
commit | cd8b3aa2c5abd414068c8f9f5edbebab807153eb (patch) | |
tree | 94030d3e8d85981f9495cebca962bfe9398e2acd /apioforum/templates | |
parent | a1660cad33f03828e2c74d8f083ad6490ea0da7f (diff) |
display vote counts (badly)
Diffstat (limited to 'apioforum/templates')
-rw-r--r-- | apioforum/templates/view_thread.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html index 513ee59..622cf06 100644 --- a/apioforum/templates/view_thread.html +++ b/apioforum/templates/view_thread.html @@ -9,7 +9,7 @@ <p>{{poll.title}}</p> <ul> {%for opt in poll.options%} - <li>#{{opt.option_idx}} - {{opt.text}}</li> + <li>#{{opt.option_idx}} - {{opt.text}} - {{opt.num or 0}}</li> {%endfor%} </ul> {% endif %} |