summaryrefslogtreecommitdiff
path: root/httemplate/edit/alarm_station.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/alarm_station.html')
-rw-r--r--httemplate/edit/alarm_station.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/httemplate/edit/alarm_station.html b/httemplate/edit/alarm_station.html
new file mode 100644
index 000000000..0d088dfdc
--- /dev/null
+++ b/httemplate/edit/alarm_station.html
@@ -0,0 +1,23 @@
+<& elements/edit.html,
+ 'table' => 'alarm_station',
+ 'name_singular' => 'central station',
+ 'agent_virt' => 1,
+ 'agent_null_right' => 'Alarm global configuration',
+ 'fields' => [
+ { field=>'stationname', type=>'text', size=>20 },
+ { field=>'disabled', type=>'checkbox', value=>'Y' },
+ ],
+ 'labels' => { 'alarmstationnum' => 'Central Station',
+ 'agentnum' => 'Agent',
+ 'stationname' => 'Central Station',
+ 'disabled' => 'Disabled',
+ },
+ 'viewall_dir' => 'browse',
+&>
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Alarm configuration')
+ || $FS::CurrentUser::CurrentUser->access_right('Alarm global configuration');
+
+</%init>