mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Tweaked by tabbott to avoid accidentally disabling the linter for handlebars templates. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
12 lines
305 B
Handlebars
12 lines
305 B
Handlebars
{{#each options}}
|
|
<li>
|
|
<button class="poll-vote {{#if current_user_vote}}current-user-vote{{/if}}" data-key="{{ key }}">
|
|
{{ count }}
|
|
</button>
|
|
<span class="poll-option">{{ option }}</span>
|
|
{{#if names}}
|
|
<span class="poll-names">({{ names }})</span>
|
|
{{/if}}
|
|
</li>
|
|
{{/each}}
|