52 lines
1.4 KiB
Handlebars
52 lines
1.4 KiB
Handlebars
{{#if canEdit}}
|
|
{{#if this.currentUser.admin}}
|
|
<div class="control-group">
|
|
<label class="control-label" for="name">{{i18n 'groups.name'}}</label>
|
|
|
|
{{text-field name="name"
|
|
class="input-xxlarge group-form-name"
|
|
value=nameInput
|
|
placeholderKey="admin.groups.name_placeholder"}}
|
|
|
|
{{input-tip validation=nameValidation}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="control-group">
|
|
<label class="control-label" for='full_name'>{{i18n 'groups.manage.full_name'}}</label>
|
|
|
|
{{text-field name='full_name'
|
|
class="input-xxlarge group-form-full-name"
|
|
value=model.full_name}}
|
|
</div>
|
|
|
|
{{#if this.currentUser.admin}}
|
|
<div class="control-group">
|
|
<label class="control-label" for="title">
|
|
{{i18n 'admin.groups.default_title'}}
|
|
</label>
|
|
|
|
{{input value=model.title name="title" class="input-xxlarge"}}
|
|
|
|
<div class="control-instructions">
|
|
{{i18n 'admin.groups.default_title_description'}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
<div class="control-group">
|
|
<label class="control-label" for="bio">{{i18n 'groups.bio'}}</label>
|
|
{{d-editor value=model.bio_raw class="group-form-bio input-xxlarge"}}
|
|
</div>
|
|
|
|
{{#if canEdit}}
|
|
{{yield}}
|
|
|
|
<div class="control-group">
|
|
{{group-flair-inputs model=model}}
|
|
</div>
|
|
|
|
{{plugin-outlet name="group-edit" args=(hash group=model)}}
|
|
{{/if}}
|