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

{{ profile.name }}

@{{ profile.user.username }}
{% if profile.bio %}
{{ profile.bio |linebreaksbr }}
{% endif %} {% if profile.location %}
{{ profile.location }}
{% endif %} {% if profile.website %}
{{ profile.website }} {% endif %} {% if profile.twitter %} {% endif %} {% if request.user.is_authenticated %} Edit Profile {% endif %}
{##} {#
#} {#
#} {##} {#
#} {##} {#
#} {#

Welcome, {{ user.username }} Profile

#} {#

Username: {{ user.username }}

#} {#

Email: {{ user.email }}

#} {#

First Name: {{ user.first_name }}

#} {#

Last Name: {{ user.last_name }}

#} {#

Is Active: {{ user.is_active }}

#} {##} {# Logout#} {##} {#
#} {# {% csrf_token %}#} {##} {# {% bootstrap_form form layout=layout size=size %}#} {# {% bootstrap_button button_type="submit" content="update" %}#} {##} {#
#} {##} {##} {#
#} {#
#} {##} {#
#} {#
#} {% endblock %}