TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:39 +02:00
commit e54ab24745
68 changed files with 3683 additions and 0 deletions
@@ -0,0 +1,41 @@
<html
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true"
>
<f:layout name="Widget/Widget"/>
<f:section name="main">
<f:if condition="!{pages}">
<f:then>
<f:translate key="LLL:EXT:seo/Resources/Private/Language/locallang_dashboard.xlf:widget.pagesWithoutMetaDescription.noMissingDescriptions" />
</f:then>
<f:else>
<div class="widget-table-wrapper">
<table class="widget-table table table-striped table-hover">
<f:for each="{pages}" as="page">
<tr>
<td>
<strong>{page.title}</strong>
<br/>
{page.frontendUrl}
</td>
<td class="text-end">
<div class="btn-group">
<a href="{page.frontendUrl}" target="_blank" class="btn btn-default">
<core:icon identifier="actions-eye" alternativeMarkupIdentifier="inline"/>
</a>
<be:link.editRecord uid="{page.uid}" table="pages" module="web_layout" fields="description" returnUrl="{be:moduleLink(route: 'dashboard')}" class="btn btn-default">
<core:icon identifier="actions-open" alternativeMarkupIdentifier="inline"/>
</be:link.editRecord>
</div>
</td>
</tr>
</f:for>
</table>
</div>
</f:else>
</f:if>
</f:section>