Steven Barth 5f40074c0e * Updated dispatcher to use fastindex if available
* Updated webuci SGI
* Updated dispatcher
2008-05-26 09:45:12 +00:00

11 lines
348 B
Lua

module("luci.controller.admin.status", package.seeall)
function index()
entry({"admin", "status"}, template("admin_status/index"), "Status", 20)
entry({"admin", "status", "syslog"}, action_syslog, "Systemprotokoll")
end
function action_syslog()
local syslog = luci.sys.syslog()
luci.template.render("admin_status/syslog", {syslog=syslog})
end