{% extends 'user/base.html' %} {% block title %}{{ user.display_name }} - {{ _('Info') }} - CritiqueBrainz{% endblock %} {% block profile_content %} {% if user.musicbrainz_username %}
See profile on MusicBrainz
{% endif %}

{{ _('General information') }}

{{ _('Member since') }}
{{ user.created | date }}
{{ _('User type') }}
{{ user.user_type.label }}
{{ _('Karma') }}
{{ user.karma }}
{% if current_user.is_authenticated and current_user == user %}
{{ _('Email') }}
{{ current_user.email }} (visible to just you)
{% endif %}
{% if current_user.is_authenticated and current_user == user %}

{{ _('Limits') }}

{{ _('Reviews/day') }}
{{ current_user.user_type.reviews_per_day }}
{{ _('Votes/day') }}
{{ current_user.user_type.votes_per_day }}
{% endif %}

{{ _('Statistics') }}

{{ _('Reviews') }}
{{ _('Today') }}
{{ user.stats.reviews_today }}
{{ _('Last 7 days') }}
{{ user.stats.reviews_last_7_days }}
{{ _('This month') }}
{{ user.stats.reviews_this_month }}
{{ _('Votes') }}
{{ _('Today') }}
{{ user.stats.votes_today }}
{{ _('Last 7 days') }}
{{ user.stats.votes_last_7_days }}
{{ _('This month') }}
{{ user.stats.votes_this_month }}
{{ _('Comments') }}
{{ _('Today') }}
{{ user.stats.comments_today }}
{{ _('Last 7 days') }}
{{ user.stats.comments_last_7_days }}
{{ _('This month') }}
{{ user.stats.comments_this_month }}
{% endblock %}