mirror of https://github.com/zulip/zulip.git
14 lines
431 B
Handlebars
14 lines
431 B
Handlebars
{{#each events }}
|
|
<div class="integration-event-wrapper">
|
|
<label class="checkbox">
|
|
<input type="checkbox" class="integration-event" id="{{this.event_id}}" checked=true
|
|
value="{{this.event}}" />
|
|
<span>
|
|
</span>
|
|
</label>
|
|
<label for="{{this.event_id}}" class="inline integration-event-name">
|
|
{{this.event}}
|
|
</label>
|
|
</div>
|
|
{{/each}}
|