{% extends 'admin/base.html.twig' %} {% block title %}Indexierung (Ingest Jobs){% endblock %} {% block body %} {% set latestJob = jobs is not empty ? jobs|first : null %}
| Job | Typ | Status | Bezug | Gestartet | Beendet | Benutzer |
|---|---|---|---|---|---|---|
|
{% if job.errorMessage %}
{{ job.errorMessage|slice(0, 120) }}{% if job.errorMessage|length > 120 %}…{% endif %}
{% endif %}
|
{{ job.type }} | {% if job.status == 'COMPLETED' %} COMPLETED {% elseif job.status == 'QUEUED' %} QUEUED {% elseif job.status == 'RUNNING' %} RUNNING {% elseif job.status == 'FAILED' %} FAILED {% elseif job.status == 'ABORTED' %} ABORTED {% else %} {{ job.status }} {% endif %} |
{% if job.documentId %}
Dokument:
{{ job.documentId }}
{% endif %}
{% if job.documentVersionId %}
Version:
{{ job.documentVersionId }}
{% endif %}
{% if not job.documentId and not job.documentVersionId %}
-
{% endif %}
|
{{ job.startedAt ? job.startedAt|date('d.m.Y H:i:s') : '-' }} | {{ job.finishedAt ? job.finishedAt|date('d.m.Y H:i:s') : 'offen' }} | {{ job.startedBy ? job.startedBy.email : '-' }} |
| Keine Jobs gefunden. | ||||||