{% extends 'admin/base.html.twig' %} {% block title %}Dokument{% endblock %} {% block body %}
| Version | Aktiv | Ingest | Checksum | Erstellt von | Datum | Aktionen |
|---|---|---|---|---|---|---|
|
v{{ version.versionNumber }}
{% if document.currentVersion and version.id == document.currentVersion.id %}
Current
{% endif %}
|
{% if version.isActive %} Aktiv {% else %} Inaktiv {% endif %} | {% if version.ingestStatus == 'INDEXED' %} INDEXED {% elseif version.ingestStatus == 'RUNNING' %} RUNNING {% elseif version.ingestStatus == 'FAILED' %} FAILED {% elseif version.ingestStatus == 'PENDING' %} PENDING {% else %} {{ version.ingestStatus ?: '-' }} {% endif %} |
{% if version.checksum %}
{{ version.checksum[:12] ~ '…' }}
{% else %}
-
{% endif %}
|
{{ version.createdBy ? version.createdBy.email : '-' }} | {{ version.createdAt|date('d.m.Y H:i:s') }} |
{% if version.isActive %}
{% if version.ingestStatus in ['PENDING', 'FAILED'] and is_granted('ROLE_EDITOR') %}
{% else %}
Keine Aktion nötig
{% endif %}
{% else %}
{% if is_granted('ROLE_EDITOR') %}
{% endif %}
{% endif %}
|