{#if user.avatarUrl}
{:else}
{initials()}
{/if}
{displayName() || user.email}
{#if displayName()}
{user.email}
{/if}
{accountInfoTitle}
{emailLabel}
{user.email}
{#if displayName()}
{nameLabel}
{displayName()}
{/if} {#if user.role}
{roleLabel}
{formatRole(user.role)}
{/if} {#if user.createdAt}
{memberSinceLabel}
{formatDate(user.createdAt)}
{/if} {#if user.lastLoginAt}
{lastLoginLabel}
{formatDate(user.lastLoginAt)}
{/if}
{#if actions}
{actionsTitle}
{#if actions.onEditProfile}
{editProfileLabel}
{/if} {#if actions.onChangePassword}
{changePasswordLabel}
{/if} {#if actions.onLogout}
{logoutLabel}
{/if} {#if actions.onDeleteAccount}
{deleteAccountLabel}
{deleteAccountWarning}
{/if}
{/if}