summaryrefslogtreecommitdiff
path: root/httemplate/elements/menu.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/menu.html')
-rw-r--r--httemplate/elements/menu.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html
index d0741596b..a70abe475 100644
--- a/httemplate/elements/menu.html
+++ b/httemplate/elements/menu.html
@@ -140,7 +140,7 @@ foreach my $svcdb ( FS::part_svc->svc_tables() ) {
my $name = "FS::$svcdb"->table_info->{'name_plural'}
|| PL( "FS::$svcdb"->table_info->{'name'} );
- my $lcname = lc($name);
+ my $lcname = "FS::$svcdb"->table_info->{'lcname_plural'} || lc($name);
my $lcsname = lc("FS::$svcdb"->table_info->{'name'});
my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
my $lclongname = lc($longname);
@@ -197,10 +197,18 @@ foreach my $svcdb ( FS::part_svc->svc_tables() ) {
}
if ( $svcdb eq 'svc_phone' ) {
+
$report_svc{"Phone number (DID) availability"} =
[ $fsurl."search/report_phone_avail.html", '' ];
$report_svc{"Inventory/Provisioning Status"} =
[ $fsurl."search/phone_inventory_provisioned.html", '' ];
+
+ } elsif ( $svcdb eq 'svc_dsl' ) {
+
+ $report_svc{'Qualifications'} = [ $fsurl. 'search/qual.cgi', #XXX qual.html
+ '',
+ ];
+
}
$report_services{$name} = [ \%report_svc, $longname ];