16 lines
No EOL
794 B
HTML
16 lines
No EOL
794 B
HTML
<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-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-medium text-gray-500 hover:text-primary">
|
|
<span id="poll-{{c.id}}">{{c.upvotes}}</span> votes
|
|
</a>
|
|
</span>
|
|
</label>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> |