{% extends league_base %} {% load picker_tags %} {% block title %}Roster Profile{% endblock %} {% favorite_team profile.user as fav %} {% block fav_team %}team-{{ fav.abbr|default:"none"|lower }}{% endblock fav_team %} {% block main_content %}

{{ profile.user.username }}

Since {{ profile.user.date_joined|date:"M j, Y" }}

{% if fav %}

{% if fav.logo %}{% endif %} {{ fav }}

{% endif %} {% for entry in stats %}{% if entry.picksets_played %} {% endif %}{% endfor %}
Season Weeks Played Weeks Won Good Bad % ±Pts ±avg
{{ entry.season|default:"Totals" }} {{ entry.picksets_played }} {{ entry.picksets_won }} {{ entry.correct }} {{ entry.wrong }} {{ entry.pct|floatformat:"1" }}% {{ entry.points_delta}} {{ entry.avg_points_delta|floatformat }}
{% endblock %}