small-package/luci-app-netspeedtest/luasrc/model/cbi/netspeedtest/log.lua

14 lines
260 B
Lua
Raw Normal View History

2024-03-23 04:15:49 +08:00
local fs = require "nixio.fs"
local uci = require"luci.model.uci".cursor()
local f, t
f = SimpleForm("logview")
f.reset = false
f.submit = false
t=f:field(TextValue,"conf")
t.rmempty=true
t.rows=20
t.template="netspeedtest/log"
t.readonly="readonly"
return f