local fs = require "nixio.fs" local conffile = "/tmp/familycloud.log" f = SimpleForm("logview") t = f:field(TextValue, "conf") t.rmempty = true t.rows = 15 function t.cfgvalue() return fs.readfile(conffile) or "" end t.readonly = "readonly" return f