mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
14 lines
421 B
Handlebars
14 lines
421 B
Handlebars
{{#each options}}
|
|
<li>
|
|
<label class="poll-option-label">
|
|
<button class="poll-vote {{#if current_user_vote}}current-user-vote{{/if}}" data-key="{{ key }}">
|
|
{{ count }}
|
|
</button>
|
|
<span class="poll-option-text">{{ option }}</span>
|
|
</label>
|
|
{{#if names}}
|
|
<span class="poll-names">({{ names }})</span>
|
|
{{/if}}
|
|
</li>
|
|
{{/each}}
|