%
layout("/layouts/platform.html"){
%>
<% for(obj in firstMenus){ %>
-
Drag
${obj.name!}
<% if(!isEmpty(@secondMenus.get(obj.path))){ %>
<% for(secondMenu in @secondMenus.get(obj.path)){ %>
-
Drag
${secondMenu.name!}
<% if(!isEmpty(@secondMenus.get(secondMenu.path))){ %>
<% for(thMenu in @secondMenus.get(secondMenu.path)){ %>
-
Drag
${thMenu.name!}
<% } %>
<% } %>
<% } %>
<% } %>
<% }%>
<%}%>