Your IP : 216.73.216.43


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-tstemplate/Resources/Private/Partials/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-tstemplate/Resources/Private/Partials/AnalyzerOptions.html

<html
    xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
    xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
    data-namespace-typo3-fluid="true"
>

<f:if condition="{f:count(subject: allTemplatesOnPage)} > 1">
    <div class="form-row">
        <div class="form-group">
            <form action="{f:be.uri(route: 'web_typoscript_analyzer', parameters: '{id: pageUid}')}" method="post">
                <label class="form-label" for="selectedTemplate">
                    <f:translate key="LLL:EXT:tstemplate/Resources/Private/Language/locallang_analyzer.xlf:options.selectedRecord" />
                </label>
                <select
                    name="selectedTemplate"
                    id="selectedTemplate"
                    class="form-select"
                    data-global-event="change"
                    data-action-navigate="$data=~s/$value/"
                    data-action-submit="$form"
                >
                    <f:for each="{allTemplatesOnPage}" as="template">
                        <option
                            value="{template.uid}"
                            {f:if(condition:'{selectedTemplateUid} == {template.uid}', then:'selected="selected"')}
                        >
                        {template.title}
                        </option>
                    </f:for>
                </select>
            </form>
        </div>
    </div>
</f:if>

</html>