modules/admin-full: Rewrote route configuration page
[project/luci.git] / modules / admin-full / luasrc / controller / admin / network.lua
index fa7a8c7..7614529 100644 (file)
@@ -26,12 +26,12 @@ function index()
        local page  = node("admin", "network", "vlan")
        page.target = cbi("admin_network/vlan")
        page.title  = i18n("a_n_switch", "Switch")
-       page.order  = 10
+       page.order  = 20
        
        local page  = node("admin", "network", "network")
        page.target = cbi("admin_network/network")
        page.title  = i18n("interfaces", "Schnittstellen")
-       page.order  = 20
+       page.order  = 10
        luci.model.uci.foreach("network", "interface",
                function (section)
                        local ifc = section[".name"]
@@ -54,6 +54,14 @@ function index()
        
        local page  = node("admin", "network", "routes")
        page.target = cbi("admin_network/routes")
-       page.title  = i18n("a_n_routes", "Routen")
+       page.title  = i18n("a_n_routes")
        page.order  = 40
+       page.leaf   = true
+       
+       entry(
+        {"admin", "network", "routes", "static"},
+        function() end,
+        i18n("a_n_routes_static")
+       )
+
 end
\ No newline at end of file