{% extends "workspace_base.html" %} {% block workspace_content_class %}editor-screen{% endblock %} {% block workspace_content %}
{{ snapshot.relative_path.rsplit('/', 1)[-1] }} {{ snapshot.relative_path }} {% if terminal_editor_supported %} {% endif %} {% if file_run_supported %} {% if active_file_run %} {% else %} {% endif %} {% endif %}
{% if saved %}
{{ t('editor.saved') }} {{ t('editor.back_terminal') }}
{% endif %} {% if conflict %}
{{ t('editor.conflict') }} {{ t('editor.conflict_copy') }}
{% endif %} {% if save_error %}
{{ t('editor.save_failed') }} {{ save_error }}
{% endif %} {% if run_error %} {% endif %} {% if terminal_editor_error %} {% endif %}
{% set shown_file_run = active_file_run or latest_file_run %} {% if shown_file_run %} {% endif %}
{{ t('editor.diff') }}

{% endblock %}