mirror of https://github.com/zulip/zulip.git
25 lines
1.0 KiB
Handlebars
25 lines
1.0 KiB
Handlebars
{{#with user_group}}
|
|
<div class="user-group white-box" id="{{id}}">
|
|
<h4>
|
|
<span class="name" data-placeholder="{{t 'Name' }}" contenteditable="true" spellcheck="false">{{name}}</span>
|
|
—
|
|
<span class="description" data-placeholder="{{t 'Description' }}" contenteditable="true">{{description}}</span>
|
|
<button class="button rounded small save-group-changes sea-green">
|
|
<i class="fa fa-check" aria-hidden="true"></i>
|
|
</button>
|
|
<button class="button rounded small delete btn-danger">
|
|
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
|
</button>
|
|
</h4>
|
|
<p>
|
|
{{t 'Subscribers' }}
|
|
<div class="pill-container" data-group-pills="{{name}}">
|
|
<div class="input" contenteditable="true" data-placeholder="{{t 'Add member...' }}"></div>
|
|
</div>
|
|
<button class="button rounded small save-member-changes sea-green">
|
|
<i class="fa fa-check" aria-hidden="true"></i>
|
|
</button>
|
|
</p>
|
|
</div>
|
|
{{/with}}
|