18 lines
634 B
HTML
18 lines
634 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:form.validationResults>
|
|
<f:if condition="{validationResults.flattenedErrors}">
|
|
<ul>
|
|
<f:for each="{validationResults.flattenedErrors}" as="errors" key="propertyPath">
|
|
<li>{propertyPath}
|
|
<ul>
|
|
<f:for each="{errors}" as="error">
|
|
<li>{error.code}: {error}</li>
|
|
</f:for>
|
|
</ul>
|
|
</li>
|
|
</f:for>
|
|
</ul>
|
|
</f:if>
|
|
</f:form.validationResults>
|
|
</html>
|