{% extends 'admin/base.html.twig' %} {% block title %}Dokumente{% endblock %} {% block body %}
| Titel | ID | Typ | Status | Indexierung | Versionen | Aktive Version | Tags | Erstellt | Aktionen |
|---|---|---|---|---|---|---|---|---|---|
|
{% if document.currentVersion and document.currentVersion.filePath %}
Aktive Datei vorhanden
{% endif %}
|
{{ document.id }}
|
{% if document.currentVersion %} {{ document.currentVersion.fileTypeLabel }} {% else %} - {% endif %} | {% if document.status == 'ACTIVE' %} Aktiv {% else %} Archiviert {% endif %} | {% if document.currentVersion %} {% if document.currentVersion.ingestStatus == 'INDEXED' %} INDEXED {% elseif document.currentVersion.ingestStatus == 'PENDING' %} PENDING {% elseif document.currentVersion.ingestStatus == 'RUNNING' %} RUNNING {% elseif document.currentVersion.ingestStatus == 'FAILED' %} FAILED {% else %} {{ document.currentVersion.ingestStatus ?: '-' }} {% endif %} {% else %} - {% endif %} | {{ document.versions|length }} | {% if document.currentVersion %} v{{ document.currentVersion.versionNumber }} {% else %} - {% endif %} | {{ document.tags|length }} | {{ document.createdAt|date('d.m.Y H:i') }} |