diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-05-13 22:16:37 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-13 22:16:37 -0700 |
commit | 8d7cd4b2bd99cc1a711d81b55a1652d31eda4df5 (patch) | |
tree | f742c8f30a6724b4cf429a3247a2c9e075b668f2 /httemplate/browse/part_svc_class.html | |
parent | 6a66ab1163bfcd6f46df00aa474d013530a1e13c (diff) |
service def classes, to support corecom portal, RT#17617
Diffstat (limited to 'httemplate/browse/part_svc_class.html')
-rw-r--r-- | httemplate/browse/part_svc_class.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/httemplate/browse/part_svc_class.html b/httemplate/browse/part_svc_class.html new file mode 100644 index 000000000..73bd60305 --- /dev/null +++ b/httemplate/browse/part_svc_class.html @@ -0,0 +1,34 @@ +<% include( 'elements/browse.html', + 'title' => 'Service classes', + 'html_init' => $html_init, + 'name' => 'service classes', + 'disableable' => 1, + 'disabled_statuspos' => 1, + 'query' => { 'table' => 'part_svc_class', + 'hashref' => {}, + 'order_by' => 'ORDER BY classnum', + }, + 'count_query' => $count_query, + 'header' => $header, + 'fields' => $fields, + 'links' => $links, + ) +%> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my $html_init = + 'Service classes are user-defined, informational types for services.<BR><BR>'. + qq!<A HREF="${p}edit/part_svc_class.html"><I>Add a service class</I></A><BR><BR>!; + +my $count_query = 'SELECT COUNT(*) FROM part_svc_class'; + +my $link = [ $p.'edit/part_svc_class.html?', 'classnum' ]; + +my $header = [ '#', 'Class' ]; +my $fields = [ 'classnum', 'classname' ]; +my $links = [ $link, $link ]; + +</%init> |