{% extends "base.html" %} {% block title %} {{ user.username }} {% endblock %} {% load static %} {% block content %} {% if user.pk == request.user.id %} {% include "preferences_ribbon.html" %} {% endif %}

{{ user.username }}

Account information
{% if request.user.is_authenticated %} {% else %} Sign in to see this user's info {% 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)
{% if user.pk == request.user.id or request.user.is_superuser %}
Only visible to you:
{% if data.percent_success %}{%endif%}
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.

{% endif %} View all lots from this user

Feedback

{% if seller_feedback or winner_feedback %} {% if seller_feedback %}
Comments on lots sold by this user
{% for lot in seller_feedback %} {{ lot.lot_name}}: {{ lot.feedback_text }} left by {% if lot.winner %}{{ lot.winner }}{% else %}bidder {{lot.auctiontos_winner}}{%endif%}

{% endfor %} {% endif %} {% if winner_feedback %}
Comments on lots won by this user
{% for lot in winner_feedback %} {% if lot.user %}{{ lot.lot_name}}: {{ lot.winner_feedback_text }} left by {{ lot.user }}

{% endif %} {% endfor %} {% endif %} {% else %} There's no comments in this user's feedback yet {% endif %}

{% if user.pk != request.user.id and request.user.is_authenticated %} {% if banned %}
{% csrf_token %} This user has been banned from bidding on your lots and in auctions you administer.
{% else %}
{% csrf_token %}
{% endif %} {% endif %} {% if request.user.is_superuser %} Admin
Bought to sold ratio (higher is a seller): {{ data.bought_to_sold|floatformat:2}}
Viewed to bid ratio (lower number is a tire kicker): {{ data.bid_to_view|floatformat:2}}
Viewed to sold ratio (higher number indicates more selling): {{ data.viewed_to_sold|floatformat:2}}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}