Skip to content
Snippets Groups Projects
Select Git revision
  • 74507e1693a8188047def7e50eb1958174382e61
  • master default
  • renovate/assertj-core.version
  • renovate/org.springframework.boot-spring-boot-starter-parent-3.x
  • renovate/major-fontawesome.version
  • renovate/jakarta.xml.bind-api.version
  • renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x
  • renovate/selenium.version
  • renovate/datatables.version
  • renovate/opencsv.version
  • renovate/junit-jupiter-engine.version
  • renovate/testcontainer.version
  • demo
  • v1_8_1
  • v2.18.1
  • v2.18.0
  • v2.17.2
  • v2.17.1
  • v2.17.0
  • v2.16.1
  • v2.16.0
  • v2.15.1
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • testPipeline2
  • v2.7.0
34 results

settingsContainer.ftl

Blame
  • settingsContainer.ftl 840 B
    <#import "/spring.ftl" as s>
    
    <#macro settingsContainer formName containerId>
        <form name="${formName}" method="post">
            <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" id="token"/>
    
            <#nested>
        </form>
    
        <div class="hidden securityContainerToastContent">
            <#if toastContent??>${toastContent}</#if>
        </div>
    
        <script src="<@s.url '/webjars/jquery/3.6.0/jquery.min.js'/>"></script>
        <script src="<@s.url '/webjars/materializecss/1.0.0/js/materialize.min.js'/>"></script>
        <script>
            // function initSettingsContainer() is not defined on first page load since the javascript file is loaded at the end
            if(typeof initSettingsContainer === "function")
            {
                initSettingsContainer('${formName}', '${containerId}');
            }
        </script>
    </#macro>