internationalization/localization, RT12515
[freeside.git] / httemplate / view / cust_main.cgi
index df875f9..c9839b9 100755 (executable)
@@ -1,5 +1,6 @@
 <% include('/elements/header.html', {
              'title' => $title,
+             'head'  => $head,
              'nobr'  => 1,
           })
 %>
@@ -93,15 +94,29 @@ function areyousure(href, message) {
 
 <BR><BR>
 
+% my $br = 0;
 % if (    $curuser->access_right('Billing event reports') 
 %      || $curuser->access_right('View customer billing events')
 %    ) {
-
+% $br=1;
   <A HREF="<% $p %>search/cust_event.html?custnum=<% $custnum %>">View billing events for this customer</A>
-  <BR><BR>
+% }
 
+% if ( $conf->config('cust_main-external_links') ) {
+    <% $br++ ? ' | ' : '' %>
+%   my @links = split(/\n/, $conf->config('cust_main-external_links'));
+%   foreach my $link (@links) {
+%     $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
+%     my($url, $label, $alt) = ($1, $2, $4);
+      <A HREF="<% $url.$custnum %>" ALT="<% $alt |h %>"><% $label |h %></A>
+%   }
 % }
 
+% if ( $br ) {
+  <BR><BR>
+% }
+</%doc>
+
 %my $signupurl = $conf->config('signupurl');
 %if ( $signupurl ) {
   This customer's signup URL: <A HREF="<% $signupurl %>?ref=<% $custnum %>"><% $signupurl %>?ref=<% $custnum %></A><BR><BR>
@@ -307,4 +322,10 @@ my %viewname = reverse %views;
 
 my $view =  $cgi->param('show') || $curuser->default_customer_view;
 
+my $ie_compat = $conf->config('ie-compatibility_mode');
+my $head = '';
+if ( $ie_compat ) {
+  $head = qq(<meta http-equiv="X-UA-Compatible" content="IE=$ie_compat" />);
+}
+
 </%init>