2017-08-18 01:23:55 +02:00
|
|
|
<div id="organization-profile" data-name="organization-profile" class="settings-section">
|
|
|
|
<form class="form-horizontal admin-realm-form org-profile-form">
|
|
|
|
<h3 class="light">{{t "Organization profile" }}</h3>
|
|
|
|
|
|
|
|
<div class="alert" id="admin-realm-name-status"></div>
|
|
|
|
<div class="alert" id="admin-realm-description-status"></div>
|
|
|
|
|
2018-01-21 10:49:25 +01:00
|
|
|
<div class="inline-block organization-settings-parent">
|
2017-08-18 01:23:55 +02:00
|
|
|
<div class="input-group admin-realm">
|
|
|
|
<label for="id_realm_name">{{t "Your organization's name" }}</label>
|
|
|
|
<input type="text" id="id_realm_name" name="realm_name" class="admin-realm-name"
|
|
|
|
value="{{ realm_name }}" maxlength="40" />
|
|
|
|
</div>
|
|
|
|
<div class="input-group admin-realm">
|
|
|
|
<label for="realm_description">{{t "Your organization's description" }}</label>
|
|
|
|
<textarea id="id_realm_description" name="realm_description" class="admin-realm-description"
|
|
|
|
maxlength="1000">{{ realm_description }}</textarea>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if is_admin }}
|
|
|
|
<div class="input-group organization-submission">
|
|
|
|
<button type="submit" class="button rounded sea-green">
|
|
|
|
{{t 'Save changes' }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h3 class="light">{{t "Organization avatar" }}</h3>
|
|
|
|
|
|
|
|
<div class="realm-icon-section">
|
|
|
|
<div class="inline-block">
|
|
|
|
<img id="realm-settings-icon" src="{{ realm_icon_url }}"/>
|
|
|
|
<div id="realm_icon_file_input_error" class="text-error"></div>
|
|
|
|
<input type="file" name="realm_icon_file_input" class="notvisible"
|
|
|
|
id="realm_icon_file_input" value="{{t 'Upload icon' }}"/>
|
|
|
|
<div id="upload_icon_spinner"></div>
|
|
|
|
</div>
|
|
|
|
<div class="inline-block avatar-controls">
|
|
|
|
<button class="button rounded sea-green w-200 block input-size"
|
|
|
|
id="realm_icon_upload_button">{{t 'Upload new icon' }}</button>
|
|
|
|
<button class="button rounded btn-danger w-200 m-t-10 block input-size"
|
|
|
|
id="realm_icon_delete_button">{{t 'Delete icon' }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|