{% extends 'layouts/box.html' %} {% load django_bootstrap5 %} {% block title %} edit profile {% endblock %} {% block content %} {% if onboarding %}

Complete your Profile

{% else %}

Edit your Profile

{% endif %}

{{ user.profile.name |default:"" }}

@{{ user.username }}
{% csrf_token %} {% bootstrap_form form layout=layout size=size %} {% bootstrap_button button_type="submit" content="Submit" %} {% if onboarding %} Skip {% else %} Cancel {% endif %}
{% endblock %}