{% extends "user_profile_base.html" %} {% load i18n baseurl profile_tags %} {% block title %} {% if user == profile.user %} {{ block.super }} {% else %} {{ profile.user }} | {% trans "Users" %} | {{ settings.TITLE }} {% endif %} {% endblock %} {% block body_id %}dashboard{% endblock %} {% block breadcrumbs %} {% if user == profile.user %} {{ block.super }} {% else %}
  • {% trans "Users" %}
  • {{ profile.user }}
  • {% endif %} {% endblock %} {% block header_tabs_block %} {% if user == profile.user %} {{ block.super }} {% endif %} {% endblock %} {% block content %}

    {% trans "User Statistics" %}

    {% for stat in profile.getuserstatistics %} {% endfor %}
    {{ stat.text }}{{ stat.count }}
    {% endblock %}