projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
quiet CGI param warning
[freeside.git]
/
httemplate
/
elements
/
dashboard-topnotes.html
1
% if ( $notes ) {
2
<TABLE CLASS="fsinnerbox">
3
<TR><TD>
4
<% $notes %>
5
</TD></TR>
6
</TABLE>
7
<BR>
8
% }
9
<%init>
10
11
my $conf = new FS::Conf;
12
13
my $notes = join('<BR>', map encode_entities($_), $conf->config('dashboard-topnotes') );
14
15
</%init>