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>
13 lines
315 B
Handlebars
13 lines
315 B
Handlebars
<div class="widget-choices">
|
|
<div class="widget-choices-heading">{{ heading }}</div>
|
|
<ul>
|
|
{{#each choices}}
|
|
<li>
|
|
<button data-idx="{{ this.idx }}">{{ this.short_name }}</button>
|
|
|
|
{{ this.long_name }}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|