{% extends "base.html" %} {% from 'components/ui.html' import page_header %} {% block title %}{{ _('Edit Client') }} - {{ app_name }}{% endblock %} {% block content %} {% set actions %} {{ _('Back to Client') }} {% endset %} {{ page_header('fas fa-user-edit', _('Edit Client'), subtitle_text=client.name, actions_html=actions, breadcrumbs=[{'text': _('Clients'), 'url': url_for('clients.list_clients')}, {'text': client.name, 'url': url_for('clients.view_client', client_id=client.id)}, {'text': _('Edit')}]) }}
{{ _('Send an email to %(email)s with a link to set their portal password.', email=client.email) }}
{{ _('Email address is required to send password setup email. Please set the client email address above.') }}