{% extends 'layout_page.twig' %} {% set page = 'stats' %} {% block title %}P3X GitList{% endblock %} {% block content %} {% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Statistics', path:''}, {dir: branch, path:''}]} %}
File extensions ({{ stats.extensions|length }}) Authors ({{ authors|length }}) Other
    {% for ext, amount in stats.extensions %}
  • {{ ext }}: {{ amount }} files
  • {% endfor %}
    {% for author in authors %}
  • {{ author.name }}: {{ author.commits }} commits
  • {% endfor %}

Total files: {{ stats.files }}

Total bytes: {{ stats.size }} bytes ({{ stats.size | format_size }})

{% endblock %}