{% from "components/card.html" import stat_card %}
{{ stat_card( label="Total Files", value=(files.total_files|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Most Edited File", value=files.most_edited_file|default('N/A')|string, icon='', truncate_value=True ) }} {{ stat_card( label="Total Operations", value=(files.total_operations|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Projects with Files", value=(files.project_count|default(0)|int)|string, icon='' ) }}
{% if files.file_operations %}

Recent File Operations

{% for file_op in files.file_operations[:20] %} {% endfor %}
File Projects Operations Total Summary
{{ file_op.file_path.split('/')[-1] }}
{{ file_op.file_path|truncate(50) }}
{{ file_op.project_count }} project{{ 's' if file_op.project_count != 1 else '' }}
R: {{ file_op.read_count }} W: {{ file_op.write_count }} E: {{ file_op.edit_count }}
{{ file_op.total_operations }} {{ file_op.total_operations }} operation{{ 's' if file_op.total_operations != 1 else '' }}
{% else %}

No file operations available

{% endif %}