meilisearch/Resources/Private/Templates/Backend/Search/IndexQueueModule/ShowError.html

14 lines
588 B
HTML
Raw Normal View History

2021-04-17 00:26:33 +02:00
<html
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
data-namespace-typo3-fluid="true">
<f:if condition="{indexQueueItem.errors}">
2021-04-17 21:20:54 +02:00
<h1><f:translate key="meilisearch.backend.index_queue_module.error_details"/> (uid: <code>{indexQueueItem.indexQueueUid}</code>, type: <code>{indexQueueItem.type}</code>):</h1>
2021-04-17 00:26:33 +02:00
<pre class="alert alert-danger">{indexQueueItem.errors}</pre>
<f:link.action class="btn btn-default">
2021-04-17 21:20:54 +02:00
{core:icon(identifier:'actions-view-go-back')} <f:translate key="meilisearch.backend.index_queue_module.back"/>
2021-04-17 00:26:33 +02:00
</f:link.action>
</f:if>
</html>