forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-10 21:18:39 -06:00
parent 6e2831af3b
commit 611fabe4c9
1 changed files with 4 additions and 2 deletions

View File

@ -3,8 +3,10 @@
{% for c in p.options %}
<li>
<input type="checkbox" id="{{c.id}}" name="option" {% if c.poll_voted(v) %}checked{% endif %} onchange="poll_vote('{{c.id}}')">
<label class="inline-block pl-2 text-gray-400" for="{{c.id}}">{{c.body_html | safe}} - <a href="/votes?link=t3_{{c.id}}">
<span id="poll-{{c.id}}" class="font-bold">{{c.upvotes}}</span> votes</a>
<label class="inline-block pl-2 text-black" for="{{c.id}}">{{c.body_html | safe}} -
<a href="/votes?link=t3_{{c.id}}" class="font-bold text-gray-600 hover:text-red-600">
<span id="poll-{{c.id}}">{{c.upvotes}}</span> votes
</a>
</label>
</li>
{% endfor %}