{% extends "base.html" %} {% block content %}
Total number of files
{{project.total_files_count}}
Total codebase
{{project.size}} bytes
Average file size
{{'%0.2f'|format(project.size|to_ratio(project.total_files_count))}} bytes

Files number by date

File types

{% for index, row in project.file_summary.iterrows() %} {% endfor %}
ExtensionNumber (%)Lines (%)Lines per file
{{ index }} {{ row["files_count"] }} ({{'%0.2f'|format(row["files_count"]|to_percentage(project.total_files_count))}}%) {{ row["lines_count"] }} ({{'%0.2f'|format(row["lines_count"]|to_percentage(project.total_lines_count))}}%) {{'%0.1f'|format(row["lines_count"] | to_ratio(row["files_count"]))}}
{% endblock %}