diff options
Diffstat (limited to 'httemplate/browse/pkg_class.html')
-rw-r--r-- | httemplate/browse/pkg_class.html | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/httemplate/browse/pkg_class.html b/httemplate/browse/pkg_class.html index 68cf49275..886029df5 100644 --- a/httemplate/browse/pkg_class.html +++ b/httemplate/browse/pkg_class.html @@ -1,15 +1,3 @@ -% -% -%my $html_init = -% 'Package classes define groups of packages, for reporting and '. -% 'convenience purposes.<BR><BR>'. -% qq!<A HREF="${p}edit/pkg_class.html"><I>Add a package class</I></A><BR><BR>!; -% -%my $count_query = 'SELECT COUNT(*) FROM pkg_class'; -% -%my $link = [ $p.'edit/pkg_class.html?', 'classnum' ]; -% -% <% include( 'elements/browse.html', 'title' => 'Package classes', 'html_init' => $html_init, @@ -25,3 +13,18 @@ 'links' => [ $link, $link ], ) %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my $html_init = + 'Package classes define groups of packages, for reporting and '. + 'convenience purposes.<BR><BR>'. + qq!<A HREF="${p}edit/pkg_class.html"><I>Add a package class</I></A><BR><BR>!; + +my $count_query = 'SELECT COUNT(*) FROM pkg_class'; + +my $link = [ $p.'edit/pkg_class.html?', 'classnum' ]; + +</%init> |