{% extends "shop/base.html" %} {% load i18n %} {% load satchmo_contact %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Account" %}
  • {% endblock %} {% block content %}

    {% trans "Your Account info" %}

    {% if user_data %} {% with user_data.full_name as full_name %}

    {% blocktrans %}Welcome, {{ full_name }}.{% endblocktrans %}

    {% endwith %}
    {% trans "Your profile" %}
    {% trans "Address Book Entries" %}
    {% trans "Account options" %}:

    {% trans "Update your profile" %}
    {% trans "Add address book entry" %}
    {% trans "Change your password" %}
    {% trans "Order History" %}

    {% else %}

    {% trans "Sorry, the user you've logged in as doesn't have any contact information." %}{% if request.user.is_staff %} {% trans 'Probably because you are an admin.' %}{% endif %}

    {% trans "Account options" %}:

    {% trans 'Set up contact information' %}
    {% trans "Change your password" %}

    {% endif %} {% endblock %}