{% extends 'layout.twig' %} {% block title %}Gitlist{% endblock %} {% block body %} {% include 'navigation.twig' %}
{% include 'branch_menu.twig' %} {% include 'menu.twig' %}
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 / 1024) / 1024) | number_format }} MB)


{% include 'footer.twig' %}
{% endblock %}