I have a Java Script that renders the below HTML via a Query.
What is the correct syntax to reference AwareIM column when dynamically rendering an HTML form?
«DLP_Count.TotalAlert»
{DLP_Count.TotalAlert}
I tried both but AwareIM is not able to process it.

// Generates the HTML for the alert navigation menu
getAlertfilterHtml: function(gridId) {
return `
<div id=“AlertQueryFilter_${gridId}” class=“alert-nav-container”>
<div class=“alert-nav-menu-items”>
<div class=“alert-nav-item”>
<a id=“defaultAllAlerts” class=“alert-nav-link” href=“#” onclick=“applyAlertFilter(this, ‘FIND ALL DLPAlert ORDER BY DLPAlert.DateGenerated DESC’); window.location.hash=‘AllAlerts’;” title=“View All Alerts”>
<span class=“alert-nav-link-content”><i class=“lni lni-alarm”></i>All Alerts</span>
<span class=“alert-nav-count”>«DLP_Count.TotalAlert»</span>
</a>
</div>