diff options
Diffstat (limited to 'httemplate/edit/did_vendor.html')
-rw-r--r-- | httemplate/edit/did_vendor.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/httemplate/edit/did_vendor.html b/httemplate/edit/did_vendor.html new file mode 100644 index 000000000..b6d57b548 --- /dev/null +++ b/httemplate/edit/did_vendor.html @@ -0,0 +1,19 @@ +<% include( 'elements/edit.html', + 'fields' => [ + 'vendorname', + ], + 'labels' => { + 'vendorname' => 'Vendor name', + }, + 'viewall_dir' => 'browse', + 'table' => 'did_vendor', + 'name' => 'Bulk DID Vendor', + ) + +%> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +</%init> |