From 5264cbf1175e3ea73cf9bcf5087c5028e6cf3b1c Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sat, 4 Jan 2014 16:23:54 -0800 Subject: svc_conferencing, RT#24389 --- httemplate/edit/conferencing_quality.html | 21 +++++++++++++++++++++ httemplate/edit/conferencing_type.html | 21 +++++++++++++++++++++ httemplate/edit/process/conferencing_quality.html | 10 ++++++++++ httemplate/edit/process/conferencing_type.html | 10 ++++++++++ 4 files changed, 62 insertions(+) create mode 100644 httemplate/edit/conferencing_quality.html create mode 100644 httemplate/edit/conferencing_type.html create mode 100644 httemplate/edit/process/conferencing_quality.html create mode 100644 httemplate/edit/process/conferencing_type.html (limited to 'httemplate/edit') diff --git a/httemplate/edit/conferencing_quality.html b/httemplate/edit/conferencing_quality.html new file mode 100644 index 000000000..4d93deefa --- /dev/null +++ b/httemplate/edit/conferencing_quality.html @@ -0,0 +1,21 @@ +<& elements/edit.html, + 'table' => 'conferencing_quality', + 'name_singular' => 'quality', + 'fields' => [ + { field=>'qualityid', type=>'text', size=>4 }, + { field=>'qualityname', type=>'text', }, + { field=>'disabled', type=>'checkbox', value=>'Y'}, + ], + 'labels' => { 'confqualitynum' => 'Type', + 'qualityid' => 'ID', + 'qualityname' => 'Name', + 'disabled' => 'Disabled', + }, + 'viewall_dir' => 'browse', +&> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + + diff --git a/httemplate/edit/conferencing_type.html b/httemplate/edit/conferencing_type.html new file mode 100644 index 000000000..964a5601a --- /dev/null +++ b/httemplate/edit/conferencing_type.html @@ -0,0 +1,21 @@ +<& elements/edit.html, + 'table' => 'conferencing_type', + 'name_singular' => 'type', + 'fields' => [ + { field=>'typeid', type=>'text', size=>4 }, + { field=>'typename', type=>'text', }, + { field=>'disabled', type=>'checkbox', value=>'Y'}, + ], + 'labels' => { 'conftypenum' => 'Type', + 'typeid' => 'ID', + 'typename' => 'Name', + 'disabled' => 'Disabled', + }, + 'viewall_dir' => 'browse', +&> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + + diff --git a/httemplate/edit/process/conferencing_quality.html b/httemplate/edit/process/conferencing_quality.html new file mode 100644 index 000000000..e68b4ead7 --- /dev/null +++ b/httemplate/edit/process/conferencing_quality.html @@ -0,0 +1,10 @@ +<& elements/process.html, + 'table' => 'conferencing_quality', + 'viewall_dir' => 'browse', +&> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + + diff --git a/httemplate/edit/process/conferencing_type.html b/httemplate/edit/process/conferencing_type.html new file mode 100644 index 000000000..a67d7792a --- /dev/null +++ b/httemplate/edit/process/conferencing_type.html @@ -0,0 +1,10 @@ +<& elements/process.html, + 'table' => 'conferencing_type', + 'viewall_dir' => 'browse', +&> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + + -- cgit v1.2.1