+
+ <% Object.entries(data.cueLists).forEach(([cueListName,cueListData]) => { %>
+
+
+ Cue List: <%= cueListData.name %> <%= cueListData.active ? '(Active)': '' %>
+
+
+
+ | Name |
+
+
+
+ <% Object.entries(cueListData.cues).forEach(([cueName,cueData]) => { %>
+
+
+ | <%= cueName %> |
+
+
+ <% }); %>
+
+
+
+ <%
+ });
+ %>
+
\ No newline at end of file