{% extends "base.html" %} {% block title %} {{ user.username }} {% endblock %} {% load static %} {% block content %} {% if user.pk == request.user.id %} {% include "preferences_ribbon.html" %} {% endif %}
| Email: | {% if data.email_visible %}
{{ user.email }} {% else %} This user's email address is private {% endif %} |
| Joined: | {{ user.date_joined }} |
| Last activity: | {{ data.last_activity }} |
| Lots sold: Feedback: |
{{ data.lots_sold }} +{{ data.positive_feedback_as_seller }} -{{ data.negative_feedback_as_seller }} ({{ data.percent_positive_feedback_as_seller }}% positive) |
| Lots bought: Feedback: |
{{ data.lots_bought }} +{{ data.positive_feedback_as_winner }} -{{ data.negative_feedback_as_winner }} ({{ data.percent_positive_feedback_as_winner }}% positive) |
| Location: | {% if data.location %}{{ data.location }}{%else%} Not set{% endif %} |
| Total bids: | {{ data.total_bids }} |
| Total views: | {{ data.lots_viewed }} |
| Bid success: Only for online auctions |
When you bid, you win {{data.percent_success|floatformat:0}}% of the time. |