{% set hide_left_bar = True %} {% extends g.theme.master %} {% block title %}User stats{% endblock %} {% block header %} Statistics about {{user.display_name}}'s contribution – Artifacts {% endblock %} {% block content %} {% if user and (user.stats.visible or (c.user == user)) %}
{% if data %}

Statistics by category

{% for cat, row in data.items() %} {% endfor %}
Category Created artifacts Modified artifacts
{% if cat %}{{cat.fullname}}{% else %}All categories{% endif %} {% for details in row %} {% if details.messagetype %} {{details.messagetype}}: {% else %}Total:{% endif %} {{details.created}}
{% endfor %}
{% for details in row %} {% if details.messagetype %} {{details.messagetype}}: {% else %}Total:{% endif %} {{details.modified}}
{% endfor %}
{% endif %} {% else %} {% if not user.stats.visible %}

Statistics not available

This user has set his or her preferences so that personal statistics are not visible to other users of the forge.
{% else %}

Invalid user

You are looking for personal statistics of a user which doesn't exist on this forge. Check your url.
{% endif %} {% endif %} {% endblock %}