{# SPDX-FileCopyrightText: 2025 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "onboarding_base.html" %} {% load i18n %} {% block title %} {% translate "About you - Projectify" %} {% endblock title %} {% block onboarding_content %}
{% csrf_token %} {% include "onboarding/common/form_description.html" with title=_("About you") text_1=_("Tell us your preferred name. You can also keep it empty and continue by clicking the button below.") %} {{ form }} {% include "projectify/forms/submit.html" with text=_("Continue") %}
{% endblock onboarding_content %} {% block onboarding_preview %}

{% translate "Welcome" as welcome %} {% if user.preferred_name %} {% blocktrans with name=user.preferred_name %}Welcome, {{ name }}{% endblocktrans %} {% else %} {{ welcome }} {% endif %} 👋

{% endblock onboarding_preview %}