Files
zulip/static/templates/non_editable_user_group.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

12 lines
423 B
Handlebars

{{#with user_group}}
<div class="user-group white-box ntm" id="{{id}}">
<h4>
<span class="name" data-placeholder="{{t 'Name' }}">{{name}}</span>
<span class="description" data-placeholder="{{t 'Description' }}">{{description}}</span>
</h4>
<p class="subscribers">{{t 'Subscribers' }}</p>
<div class="pill-container not-editable" data-group-pills="{{id}}"></div>
</div>
{{/with}}