X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ca4c56b46b808d2e13fbd8001036377a424c97ea..b251cc22f355941217493073e124ba3878d5530f:/templates/webpages/menu/menunew.html
diff --git a/templates/webpages/menu/menunew.html b/templates/webpages/menu/menunew.html
index b54c9beb2..70537e12f 100644
--- a/templates/webpages/menu/menunew.html
+++ b/templates/webpages/menu/menunew.html
@@ -1,64 +1,31 @@
[%- USE T8 %]
-[% USE HTML %]
-
-
-
-
-
-
+[%- USE L %]
+[%- USE HTML %]
+[%- USE LxERP -%]
-
[%- SET main_id = '100' %]
- [%- FOREACH mainitem = menu_items %]
+ [%- FOREACH node = menu.tree %]
+ [% NEXT UNLESS node.visible %]
[%- SET main_id = main_id + 1 %]
- -
-
- [%- HTML.escape(mainitem.title) %]
-
- [%- IF mainitem.subitems %]
-
+ -
+ [% L.link(menu.href_for_node(node) || '#', menu.name_for_node(node), target=node.target) %]
+ [%- IF node.children %]
+
[%- SET sub1_id = main_id * 100 %]
- [%- FOREACH sub1item = mainitem.subitems %]
+ [%- FOREACH sub1node = node.children %]
+ [% NEXT UNLESS sub1node.visible %]
[%- SET sub1_id = sub1_id + 1 %]
- -
-
- [%- HTML.escape(sub1item.title) %]
-
- [%- IF sub1item.subitems %]
-
+ -
+ [% L.link(menu.href_for_node(sub1node) || '#', menu.name_for_node(sub1node), target=sub1node.target) %]
+ [%- IF sub1item.children %]
+
[%- SET sub2_id = sub1_id * 100 %]
- [%- FOREACH sub2item = sub1item.subitems %]
+ [%- FOREACH sub2node = sub1node.children %]
+ [% NEXT UNLESS sub2node.visible %]
[%- SET sub2_id = sub2_id + 1 %]
- -
-
- [%- HTML.escape(sub2item.title) %]
-
+
-
+ [% L.link(menu.href_for_node(sub2node) || '#', menu.name_for_node(sub2node), target=sub2node.target) %]
[%- END %]
@@ -70,30 +37,3 @@ $(clockon);
[%- END %]
-
-