2013-05-09 03:37:34 -04:00
|
|
|
<div class='row groups'>
|
2013-04-17 03:08:21 -04:00
|
|
|
<div class='content-list span6'>
|
|
|
|
<h3>{{i18n admin.groups.edit}}</h3>
|
|
|
|
<ul>
|
2013-05-08 01:20:38 -04:00
|
|
|
{{#each group in model}}
|
2013-04-17 03:08:21 -04:00
|
|
|
<li>
|
2013-05-08 01:20:38 -04:00
|
|
|
<a href="#" {{action "edit" group}} {{bindAttr class="group.active"}}>{{group.name}} <span class="count">{{group.userCountDisplay}}</span></a>
|
2013-04-17 03:08:21 -04:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2013-05-09 03:37:34 -04:00
|
|
|
<div class='controls'>
|
|
|
|
<button class='btn' {{bindAttr disabled="refreshingAutoGroups"}} {{action "refreshAutoGroups"}}>Refresh</button>
|
|
|
|
<button class='btn' {{action newGroup}}>New</button>
|
2013-05-08 01:20:38 -04:00
|
|
|
</div>
|
2013-04-17 03:08:21 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class='content-editor'>
|
2013-05-08 01:20:38 -04:00
|
|
|
{{#if model.active}}
|
2013-05-09 03:37:34 -04:00
|
|
|
{{#if model.active.loaded}}
|
|
|
|
{{#with model.active}}
|
|
|
|
{{#if automatic}}
|
|
|
|
<h3>{{name}}</h3>
|
|
|
|
{{else}}
|
2013-05-20 12:47:59 -04:00
|
|
|
{{textField value=name placeholderKey="admin.groups.name_placeholder"}}
|
2013-05-09 03:37:34 -04:00
|
|
|
{{/if}}
|
2013-04-18 23:06:00 -04:00
|
|
|
|
2013-06-16 22:54:25 -04:00
|
|
|
{{userSelector usernames=usernames id="group-users" placeholderKey="admin.groups.selector_placeholder" tabindex="1" disabledBinding="automatic"}}
|
2013-05-09 03:37:34 -04:00
|
|
|
<div class='controls'>
|
|
|
|
{{#unless automatic}}
|
2013-06-16 23:43:06 -04:00
|
|
|
<button {{action save this}} {{bindAttr disabled="disableSave"}} class='btn'>{{i18n admin.customize.save}}</button>
|
2013-05-09 03:37:34 -04:00
|
|
|
{{#if id}}
|
|
|
|
<a {{action destroy this}} class='delete-link'>{{i18n admin.customize.delete}}</a>
|
|
|
|
{{/if}}
|
2013-06-16 23:43:06 -04:00
|
|
|
{{else}}
|
|
|
|
{{i18n admin.groups.can_not_edit_automatic}}
|
2013-05-09 03:37:34 -04:00
|
|
|
{{/unless}}
|
|
|
|
</div>
|
|
|
|
{{/with}}
|
|
|
|
{{else}}
|
|
|
|
<div class='spinner'>{{i18n loading}}</div>
|
|
|
|
{{/if}}
|
2013-04-17 03:08:21 -04:00
|
|
|
{{else}}
|
2013-06-16 23:43:06 -04:00
|
|
|
{{i18n admin.groups.about}}
|
2013-04-17 03:08:21 -04:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|