TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:spaceless>
|
||||
<f:if condition="{settings.{key}}">
|
||||
<f:then>
|
||||
{settings.{key}}
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:translate domain="felogin.messages" key="{key}"/>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:spaceless>
|
||||
</html>
|
||||
@@ -0,0 +1,17 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user