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

{{ _('Trade Summary') }}

{{ _('Your Reputation') }}
{{ request.user.reputation_score }}
{{ _('Current Score') }}
{{ _('Your Trade Offers') }}
{{ dashboard_offers_paginated.page_obj.count }}
{{ _('Active Offers') }}
{{ _('Waiting on You') }}
{{ trade_acceptances_waiting_paginated.page_obj.count }}
{{ _('Pending Requests') }}
{{ _('Waiting on Them') }}
{{ other_party_trade_acceptances_paginated.page_obj.count }}
{{ _('Pending Responses') }}
{% include 'trades/_trade_offer_list.html' with offers=dashboard_offers_paginated.object_list page_obj=dashboard_offers_paginated.page_obj %}
{% include 'trades/_trade_offer_list.html' with offers=trade_acceptances_waiting_paginated.object_list page_obj=trade_acceptances_waiting_paginated.page_obj %}
{% include 'trades/_trade_offer_list.html' with offers=other_party_trade_acceptances_paginated.object_list page_obj=other_party_trade_acceptances_paginated.page_obj %}
{{ _('Closed Offers') }} ({{ closed_offers_paginated.page_obj.count }})
{% include 'trades/_trade_offer_list.html' with offers=closed_offers_paginated.object_list page_obj=closed_offers_paginated.page_obj %}
{{ _('Closed Acceptances') }} ({{ closed_acceptances_paginated.page_obj.count }})
{% include 'trades/_trade_offer_list.html' with offers=closed_acceptances_paginated.object_list page_obj=closed_acceptances_paginated.page_obj %}
{{ _('Rejected by Them') }} ({{ rejected_by_them_paginated.page_obj.count }})
{% include 'trades/_trade_offer_list.html' with offers=rejected_by_them_paginated.object_list page_obj=rejected_by_them_paginated.page_obj %}
{{ _('Rejected by Me') }} ({{ rejected_by_me_paginated.page_obj.count }})
{% include 'trades/_trade_offer_list.html' with offers=rejected_by_me_paginated.object_list page_obj=rejected_by_me_paginated.page_obj %}
{% with gravatar_profile=request.user.email|gravatar_profile_data %} {% if 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. Many websites, including this one, use Gravatar to display your preferred avatar automatically.

How does it work?

If you've set up a Gravatar, your profile picture will appear here whenever you use your email on supported sites. If you don't have a Gravatar yet, you'll see a default image instead.

Is it safe? What about privacy?

Gravatar is completely optional, opt-in, and prioritizes your security and privacy. Your email is never visible to anyone and only a hashed version is shown on the page and sent to Gravatar, protecting your identity while ensuring that your email address is not exposed to bots or scrapers.

Want to update or add a Gravatar?

Go to Gravatar.com to set up or change your avatar. Your updates will appear here once saved!

{% if friend_codes %}
    {% for code in friend_codes %}
  • {{ code.in_game_name }} {% if code.is_default %} Default {% endif %}
    {{ code.friend_code }}
    {% if not code.is_default %}
    {% csrf_token %}
    {% endif %} Delete
  • {% endfor %}
{% else %}

You do not have any friend codes added yet.

{% endif %}
{% csrf_token %} {{ settings_form|crispy }}
{% endblock %}