summaryrefslogtreecommitdiff
path: root/httemplate/edit/allocate.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/allocate.html')
-rw-r--r--httemplate/edit/allocate.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/httemplate/edit/allocate.html b/httemplate/edit/allocate.html
deleted file mode 100644
index 8d1347df2..000000000
--- a/httemplate/edit/allocate.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<% include('elements/edit.html',
- 'name' => 'Allocation',
- 'table' => 'addr_block',
- 'labels' => { 'NetAddr' => 'Block',
- 'routernum' => 'Router',
- },
- 'fields' => [ { 'field' => 'NetAddr',
- 'type' => 'fixed',
- },
- { 'field' => 'routernum',
- 'type' => 'select-table',
- 'table' => 'router',
- 'name_col' => 'routername',
- 'disable_empty' => 1,
- 'agent_virt' => 1,
- 'agent_null_right' =>
- 'Broadband global configuration',
- },
- ],
- 'post_url' => "process/addr_block/allocate.cgi",
- 'popup' => 1,
- 'agent_virt' => 1,
- 'agent_null_right' => 'Broadband global configuration',
- )
-%>
-<%init>
-
-my $curuser = $FS::CurrentUser::CurrentUser;
-die "access denied"
- unless $curuser->access_right('Broadband configuration')
- || $curuser->access_right('Broadband global configuration');
-
-</%init>