summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js
blob: a99e646064d413114d239a4959dd2eb62dedea51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict';
'require view';
'require form';

return view.extend({
	render: function() {
		var m, s, o;

		m = new form.Map('attendedsysupgrade', _('Attended Sysupgrade'),
			_('Attendedsysupgrade Configuration.')
		);

		s = m.section(form.TypedSection, 'server', _('Server'));
		s.anonymous = true;

		s.option(form.Value, 'url', _('Address'),
			_('Address of the sysupgrade server'));

		s = m.section(form.TypedSection, 'client', _('Client'));
		s.anonymous = true;

		o = s.option(form.Flag, 'auto_search', _('Search on opening'),
			_('Search for new sysupgrades on opening the tab'));
		o.default = '1';
		o.rmempty = false;

		o = s.option(form.Flag, 'advanced_mode', _('Advances Mode'),
			_('Show advanced options like packge list modification'));
		o.default = '0';
		o.rmempty = false;

		return m.render();
	}
});