{% extends "base.html" %} {% block title %}{{ _('Conversion Details') }} – OnlineConvert{% endblock %} {% block content %}
{{ _('Back to Dashboard') }}

{{ _('Conversion Details') }}

{{ _('ID #%(id)s', id=conv.id) }}
{{ _('File Name') }}
{{ conv.file_name or '–' }}
{{ _('Conversion') }}
{{ conv.input_format or '?' }} {{ conv.output_format or '?' }}
{{ _('Status') }}
{{ conv.status }}
{{ _('Job ID') }}
{{ conv.job_id or '–' }}
{{ _('Created') }}
{{ conv.created_at[:16] if conv.created_at else '–' }}
{% if conv.completed_at %}
{{ _('Completed') }}
{{ conv.completed_at[:16] }}
{% endif %}
{% if conv.output_path and conv.status == 'finished' %} {{ _('Download File') }} {% endif %} {% if conv.job_id %} {{ _('View Output Page') }} {% endif %}
{% endblock %}