{% extends 'base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "My Profile" %} - {{ site_settings.business_name }}{% endblock %} {% block content %}

{% trans "My Profile" %}

{% trans "Manage your personal information and account security." %}

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% if user.profile.image %} {{ user.username }} {% else %}
{% endif %}

{{ user.get_full_name|default:user.username }}

{{ user.email|default:"No email provided" }}

{% for group in user.groups.all %} {{ group.name }} {% empty %} {% trans "User" %} {% endfor %}
{% trans "Security Tip" %}

{% trans "Always use a strong, unique password for your account. Avoid using the same password across multiple sites." %}

{% csrf_token %}
{% trans "Recommended: Square image, max 2MB." %}
{% csrf_token %}
{% trans "Leave password fields blank if you don't want to change your password." %}
{% endblock %} {% block scripts %} {% endblock %}