{% extends "base.html" %} {% load i18n static crispy_forms_tags gravatar %} {% block head_title %}{{ _('Dashboard') }}{% endblock %} {% block content %}

{{ _('Account Summary') }}

{{ _('Username:') }} {{ request.user.username }}

{{ _('Default Friend Code:') }} {{ selected_friend_code.friend_code }}

{{ _('Reputation Score:') }} {{ request.user.reputation_score }}

{{ _('Trade Summary') }}

{{ _('Your Trade Offers') }}
{{ dashboard_offers_paginated.paginator.count }}
{{ _('Active Offers') }}
{{ _('Waiting on You') }}
{{ trade_acceptances_waiting_paginated.paginator.count }}
{{ _('Pending Requests') }}
{{ _('Waiting on Them') }}
{{ other_party_trade_acceptances_paginated.paginator.count }}
{{ _('Pending Responses') }}
{% include 'trades/_trade_offer_list.html' with offers=dashboard_offers_paginated %}
{% include 'trades/_trade_offer_list.html' with offers=trade_acceptances_waiting_paginated %}
{% include 'trades/_trade_offer_list.html' with offers=other_party_trade_acceptances_paginated %}
{{ _('Closed Offers') }} ({{ closed_offers_paginated.paginator.count }})
{% include 'trades/_trade_offer_list.html' with offers=closed_offers_paginated %}
{{ _('Closed Acceptances') }} ({{ closed_acceptances_paginated.paginator.count }})
{% include 'trades/_trade_offer_list.html' with offers=closed_acceptances_paginated %}
{{ _('Rejected by Them') }} ({{ rejected_by_them_paginated.paginator.count }})
{% include 'trades/_trade_offer_list.html' with offers=rejected_by_them_paginated %}
{{ _('Rejected by Me') }} ({{ rejected_by_me_paginated.paginator.count }})
{% include 'trades/_trade_offer_list.html' with offers=rejected_by_me_paginated %}
{% with gravatar_profile=request.user.email|gravatar_profile_data %} {% if gravatar_profile %}
{{ gravatar_profile.displayName|default:request.user.username }}

{{ gravatar_profile.displayName|default:request.user.username }}

{{ _('View Gravatar Profile') }}
{% else %}

{{ _('No Gravatar profile data available.') }}

{% endif %} {% endwith %}

{{ _('What is Gravatar?') }}

{{ _('Gravatar (Globally Recognized Avatar) is a free service that links your email address to a profile picture and, optionally, a profile. Many websites use Gravatar to display your avatar automatically.') }}

{{ _('How does it work?') }}

{{ _('If you have set up a Gravatar, your profile picture will appear whenever you use your email on supported sites. Updates made on Gravatar will reflect here.') }}

{{ _('Is it safe? What about privacy?') }}

{{ _('Gravatar is optional, and your email is hashed to maintain privacy. Your personal data remains secure.') }}

{{ _('Want to update or add a Gravatar?') }}

{{ _('Go to Gravatar.com to set up or change your avatar or profile. Your changes will appear here once saved!') }}

{% csrf_token %} {{ settings_form|crispy }} {{ _('Edit Friend Codes') }}
{% endblock %}