{% 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 %}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 %} |