This page should only be used if script asks you to manually migrate skin.20240731.FORMS.SearchAdminDashboard

In the Forms Dashboard service, it is now possible to filter entries by lifecycle status and users.

If you have overloaded the XSL dashboard renderer, you must carry over the changes below.

If you have overloaded the XSL template "dashboard

Add a call to the "dashboard-filters" template above the table of entries

<xsl:template name="dashboard">
        <xsl:call-template name="back-to-form" />
        
        <xsl:call-template name="dashboard-title" />
        
        <xsl:call-template name="dashboard-filters"/>

        <xsl:call-template name="dashboard-table" />

        <xsl:apply-templates select="answer" mode="history"/>
        
        <!-- Actions that need dialog -->
        <xsl:apply-templates select="//action" mode="action-dialog"/>
    
        <xsl:call-template name="show-answer-popup" />
        
        <xsl:call-template name="show-error-popup" />
        
        <xsl:call-template name="pagination" />
    </xsl:template>

If you have overloaded the template "common-service-head-css "

You need to add a call to the "select2-css" and "admin-dashboard-css" templates.

<xsl:template name="common-service-head-css">
        <xsl:call-template name="admin-dashboard-css"/>
        <xsl:call-template name="select2-css" />
</xsl:template>

If you have overloaded the "common-service-head-js" template

You need to add a call to the "select2-js" template.

<xsl:template name="common-service-head-js">
        <xsl:call-template name="dashboard-helper-js"/>
        <xsl:call-template name="dashboard-js"/>
        <xsl:call-template name="admin-dashboard-js"/>
        <xsl:call-template name="select2-js"/>
</xsl:template>
Back to top