{% extends "layout/base.html" %} {% set active_page = "account" %} {% block title %}{{ user.username }}{% endblock %} {% block content %}
{% if user.avatar %} {% endif %}

{{ user.username }}

{% if user.description %} {{ user.description }} {% else %} {% endif %}

{{ followerCount }}

Followers

{{ followingCount }}

Following

{{ score }}

Chop Score
{% from "auth/_formhelpers.html" import render_field %}
{{ render_field(form.description) }}
{% if registration_level == 'invite' %}
Invite codes
{% for c in codes %}
{% if c.valid == False %}{% endif %} {{ c.code }} {% if c.valid == False %}{% endif %}

{% endfor %}
{% endif %}
{% endblock %}