zulip/static/templates/widgets/zform_choices.hbs
Anders Kaseorg 3c3471b720 templates: Rename *.handlebars ↦ *.hbs and - ↦ _.
Tweaked by tabbott to avoid accidentally disabling the linter for
handlebars templates.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-07-12 21:11:03 -07:00

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>
&nbsp;
{{ this.long_name }}
</li>
{{/each}}
</ul>
</div>