forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-21 23:18:55 -06:00
parent d7d31bd183
commit b10ce35876
1 changed files with 13 additions and 13 deletions

View File

@ -1,16 +1,16 @@
<div class="md:inline-block px-4 py-2 md:py-3 bg-gray-100 dark:bg-gray-700 border border-gray-300 dark:border-gray-900 rounded-md shadow-inset-t-white-10 select-none">
<ul class="flex flex-col space-y-2 mb-0">
{% for c in p.options %}
<li>
<input type="checkbox" id="{{c.id}}" name="option" {% if c.poll_voted(v) %}checked{% endif %} onchange="{% if v %}poll_vote('{{c.id}}'){% else %}poll_vote_no_v(){% endif %}">
<label class="inline-block pl-2" for="{{c.id}}">{{c.body_html | safe}}
<span class="presult {% if not p.total_poll_voted(v) %}hidden{% endif %}"> -
<a href="/votes?link=t3_{{c.id}}" class="font-bold text-gray-500 hover:text-primary">
<span id="poll-{{c.id}}">{{c.upvotes}}</span> votes
</a>
</span>
</label>
</li>
{% endfor %}
<ul class="flex flex-col space-y-1 mb-0">
{% for c in p.options %}
<li>
<input type="checkbox" id="{{c.id}}" name="option" {% if c.poll_voted(v) %}checked{% endif %} onchange="{% if v %}poll_vote('{{c.id}}'){% else %}poll_vote_no_v(){% endif %}">
<label class="inline-block pl-2" for="{{c.id}}">{{c.body_html | safe}}
<span class="presult {% if not p.total_poll_voted(v) %}hidden{% endif %}"> -
<a href="/votes?link=t3_{{c.id}}" class="font-bold text-gray-500 hover:text-primary">
<span id="poll-{{c.id}}">{{c.upvotes}}</span> votes
</a>
</span>
</label>
</li>
{% endfor %}
</ul>
</div>