diff options
Diffstat (limited to 'httemplate/search/report_unprovisioned_services.html')
-rwxr-xr-x | httemplate/search/report_unprovisioned_services.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/httemplate/search/report_unprovisioned_services.html b/httemplate/search/report_unprovisioned_services.html new file mode 100755 index 000000000..fe4d46bf7 --- /dev/null +++ b/httemplate/search/report_unprovisioned_services.html @@ -0,0 +1,32 @@ +<% include('/elements/header.html', 'Unprovisioned Services Report' ) %> + +<FORM ACTION="unprovisioned_services.html" METHOD="GET"> + + <TABLE BGCOLOR="#cccccc" CELLSPACING=0> + + <TR> + <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Search options</FONT></TH> + </TR> + + <% include( '/elements/tr-select-part_svc.html', + 'id' => 'svcpart', + 'field' => 'svcpart', + 'label' => 'Services', + 'multiple' => 1, + ) + %> + + </TABLE> + +<BR> +<INPUT TYPE="submit" VALUE="Get Report"> + +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List services'); + +</%init> |