{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% set hide_left_bar = True %} {% extends g.theme.master %} {% block title %}User stats{% endblock %} {% block header %} Statistics about {{user.display_name}}'s contribution – Code contribution {% endblock %} {% block content %} {% if user and (user.stats.visible or (c.user == user)) %}
{% if data %}

Statistics by category

{% if h.asbool(config.get('userstats.count_lines_of_code', True)) %} {% endif %} {% for cat, el in data.items() %} {% if h.asbool(config.get('userstats.count_lines_of_code', True)) %} {% endif %} {% endfor %}
Category Number of commitsLines of code
{% if cat %}{{cat.fullname}}{% else %}All categories{% endif %} {{el.number}}{{el.lines}}
{% endif %} {% else %} {% if user %}

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