2021-06-17 18:42:31 +02:00
|
|
|
<div id="profile-settings" class="settings-section show" data-name="profile">
|
|
|
|
<div class="profile-settings-form">
|
2022-02-25 22:00:26 +01:00
|
|
|
<div class="profile-main-panel inline-block">
|
2021-06-17 18:42:31 +02:00
|
|
|
<h3 class="inline-block hide" id="user-profile-header">{{t "Profile" }}</h3>
|
|
|
|
<div id="user_details_section">
|
2022-09-13 14:12:32 +02:00
|
|
|
<div class="full-name-change-container">
|
2021-06-17 18:42:31 +02:00
|
|
|
<div class="input-group inline-block grid user-name-parent">
|
|
|
|
<div class="user-name-section inline-block">
|
|
|
|
<label for="full_name" class="title inline-block">{{t "Full name" }}</label>
|
|
|
|
<i class="fa fa-question-circle change_name_tooltip tippy-zulip-tooltip settings-info-icon"
|
|
|
|
{{#if user_can_change_name}}style="display:none"{{/if}}
|
|
|
|
data-tippy-content="{{t 'Name changes are disabled in this organization. Contact an administrator to change your name.' }}">
|
|
|
|
</i>
|
|
|
|
<div class="alert-notification full-name-status"></div>
|
|
|
|
<div class="name-input">
|
|
|
|
<input id="full_name" name="full_name" type="text" value="{{ page_params.full_name }}" {{#unless user_can_change_name}}disabled="disabled"{{/unless}} maxlength="60" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-13 14:12:32 +02:00
|
|
|
</div>
|
2021-06-30 19:48:43 +02:00
|
|
|
|
2021-06-30 19:46:27 +02:00
|
|
|
<form class="form-horizontal timezone-setting-form">
|
|
|
|
<div class="input-group grid">
|
|
|
|
<label for="timezone" class="dropdown-title inline-block">{{t "Time zone" }}</label>
|
|
|
|
<div class="alert-notification timezone-setting-status"></div>
|
|
|
|
<div class="timezone-input">
|
|
|
|
<select name="timezone" id="user_timezone" class>
|
2021-08-25 13:03:05 +02:00
|
|
|
{{#unless settings_object.timezone}}
|
2021-06-30 19:46:27 +02:00
|
|
|
<option></option>
|
|
|
|
{{/unless}}
|
|
|
|
|
|
|
|
{{#each timezones}}
|
2021-12-04 15:39:38 +01:00
|
|
|
<option value="{{ this }}">{{ this }}</option>
|
2021-06-30 19:46:27 +02:00
|
|
|
{{/each}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2021-06-17 18:42:31 +02:00
|
|
|
|
|
|
|
<form class="form-horizontal custom-profile-fields-form grid"></form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-02-25 22:00:26 +01:00
|
|
|
|
|
|
|
<div class="profile-side-panel">
|
|
|
|
<div class="inline-block user-avatar-section">
|
|
|
|
{{> image_upload_widget
|
|
|
|
widget = "user-avatar"
|
|
|
|
upload_text = (t "Upload new profile picture")
|
|
|
|
delete_text = (t "Delete profile picture")
|
|
|
|
disabled_text = (t "Avatar changes are disabled in this organization")
|
|
|
|
is_editable_by_current_user = user_can_change_avatar
|
|
|
|
image = page_params.avatar_url_medium}}
|
|
|
|
<div id="user-avatar-source">
|
|
|
|
<a href="https://en.gravatar.com/" target="_blank" rel="noopener noreferrer">{{t "Avatar from Gravatar" }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="user-details">
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="user-details-title">{{t "Role" }}:</span>
|
|
|
|
<span class="user-details-desc">{{user_role_text}}</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="user-details-title">{{t "Joined" }}: </span>
|
|
|
|
<span class="user-details-desc">{{date_joined_text}}</span>
|
|
|
|
</div>
|
2021-06-17 18:42:31 +02:00
|
|
|
</div>
|
2022-11-07 23:35:23 +01:00
|
|
|
<button class="button rounded sea-green w-200 block" id="show_my_user_profile_modal">
|
|
|
|
{{t 'Preview profile' }}
|
|
|
|
<i class="fa fa-external-link" aria-hidden="true" title="{{t 'Preview profile' }}"></i>
|
|
|
|
</button>
|
2021-06-17 18:42:31 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|