42 lines
1.2 KiB
XML
42 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
|
||
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||
|
|
<xsl:output method="html" encoding="utf-8" indent="yes"/>
|
||
|
|
|
||
|
|
<!-- Parameters -->
|
||
|
|
|
||
|
|
<xsl:param name="PAGE-NAME">consolidationAlert</xsl:param>
|
||
|
|
|
||
|
|
<xsl:template match="/">
|
||
|
|
|
||
|
|
<script src="js/{$PAGE-NAME}.js?version={$VERSION}"/>
|
||
|
|
|
||
|
|
<div class="card">
|
||
|
|
|
||
|
|
<div class="card-header bg-danger text-white p-1 ps-3 border-bottom-0">
|
||
|
|
<i class="bi bi-exclamation-triangle me-2" aria-hidden="true"/>
|
||
|
|
RDI Consolidation Notice
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="card-body text-center">
|
||
|
|
|
||
|
|
<div class="alert alert-danger">
|
||
|
|
<p>You are about to mass update the RDI records table.
|
||
|
|
This process will remove all records from the RDI table.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="buttons mt-2 mb-2">
|
||
|
|
<a role="button" class="btn btn-sm btn-primary me-2 btnRunConsolidation">
|
||
|
|
<i class="bi bi-box-arrow-right me-2"/>Run</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
</xsl:template>
|
||
|
|
|
||
|
|
</xsl:stylesheet>
|