summaryrefslogtreecommitdiff
path: root/httemplate/elements/dashboard-topnotes.html
blob: 28ca025a05106fcdeb17e2bdfe74feab94af1438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% if ( $notes ) {
  <TABLE CLASS="fsinnerbox">
    <TR><TD>
      <% $notes %>
    </TD></TR>
  </TABLE>
  <BR>
% }
<%init>

my $conf = new FS::Conf;

my $notes = join('<BR>', map encode_entities($_), $conf->config('dashboard-topnotes') );

</%init>