{% extends "workspace_base.html" %} {% block workspace_content %}

{{ t('recent.fast_return') }}

{{ t('recent.heading') }}

{{ t('recent.copy') }}

{{ t('recent.refresh') }}
{% if refresh_error %}

{{ t('recent.refresh_failed', error=refresh_error) }}

{% endif %}

{{ t('recent.files') }}

{{ t('recent.files_copy') }}

{{ t('recent.all_files') }}
{% if recent_files %}
{% for entry in recent_files %} {{ entry.name }} {% if '/' in entry.relative_path %}{{ entry.relative_path }}{% endif %} {{ format_size(entry.size) }} {{ format_time_ns(entry.mtime_ns) }} {% if entry.growing %}{{ t('recent.growing') }}{% endif %} {% endfor %}
{% else %}
{{ t('recent.no_files') }}

{{ t('recent.no_files_copy') }}

{% endif %} {% if recent_scan.truncated %}

{{ t('recent.scan_limited', count=recent_scan.scanned_files) }}

{% endif %}

{{ t('recent.terminals') }}

{{ t('recent.terminals_copy') }}

{% for item in terminals %} {{ item.name }} {{ t('recent.terminal_meta', output=item.last_output_label, opened=item.last_opened_label) }} {% endfor %}
{% endblock %}