summaryrefslogtreecommitdiff
path: root/httemplate/edit/svc_cert.cgi
diff options
context:
space:
mode:
authorivan <ivan>2010-11-07 00:57:16 +0000
committerivan <ivan>2010-11-07 00:57:16 +0000
commit2d77bbdb0f3deff86a4b721e7b4f8be7ff5996d4 (patch)
treee6e297369e93092440710eecb5ebb1ebd5d26a28 /httemplate/edit/svc_cert.cgi
parent9c2d7c2a11002c9dc6774106e26953f6590ddf00 (diff)
certificates ala communigate, RT#7515
Diffstat (limited to 'httemplate/edit/svc_cert.cgi')
-rw-r--r--httemplate/edit/svc_cert.cgi30
1 files changed, 30 insertions, 0 deletions
diff --git a/httemplate/edit/svc_cert.cgi b/httemplate/edit/svc_cert.cgi
new file mode 100644
index 000000000..fa14f0ba3
--- /dev/null
+++ b/httemplate/edit/svc_cert.cgi
@@ -0,0 +1,30 @@
+<% include('/elements/header.html', "$action $svc", '') %>
+
+<% include('/elements/error.html') %>
+
+<FORM ACTION="<% $p1 %>process/svc_cert.cgi" METHOD=POST>
+<INPUT TYPE="hidden" NAME="svcnum" VALUE="<% $svcnum %>">
+<INPUT TYPE="hidden" NAME="pkgnum" VALUE="<% $pkgnum %>">
+<INPUT TYPE="hidden" NAME="svcpart" VALUE="<% $svcpart %>">
+
+<% ntable("#cccccc",2) %>
+
+</TABLE>
+<BR>
+
+<INPUT TYPE="submit" VALUE="Submit">
+
+</FORM>
+
+<% include('/elements/footer.html') %>
+
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?
+
+#my $conf = new FS::Conf;
+
+
+
+</%init>