luci/applications/luci-app-apinger/htdocs/luci-static/resources/view/apinger/alarm_down.js
Jaymin Patel 6c151fcddb luci-app-apinger: Add LuCI for Apinger
LuCI Support for Apinger

Signed-off-by: Jaymin Patel <jem.patel@gmail.com>
2022-08-01 02:24:52 +05:30

24 lines
526 B
JavaScript

'use strict';
'require view';
'require form';
return view.extend({
render: function() {
var m, s, o;
m = new form.Map('apinger', _('Apinger - Down Alarm'),
_('This alarm will be fired when target does not respond for "Time"'));
s = m.section(form.GridSection, 'alarm_down');
s.anonymous = false;
s.addremove = true;
s.addbtntitle = _('Add Down Alarm');
o = s.option(form.Value, 'time', _('Time (s)'));
o.datatype = 'range(1-30)';
o.default = '1';
o.placeholder = '1';
return m.render();
},
});