62
63
64
65
66
67
68
69
70
71
72
73
74
|
panel = panel;
}
var pgt = pg:tostr() defer pgt:free()
co:stdpage([lib.srv.convo.page] {
title = 'configure'; body = pgt;
class = lib.str.plit 'conf';
})
if panel.ct ~= 0 then panel:free() end
end
return render_conf
|
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
panel = panel;
}
var pgt = pg:tostr() defer pgt:free()
co:stdpage([lib.srv.convo.page] {
title = 'configure'; body = pgt;
class = lib.str.plit 'conf';
cache = false;
})
if panel.ct ~= 0 then panel:free() end
end
return render_conf
|