diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/dashboard-topnotes.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/dashboard-topnotes.html b/httemplate/elements/dashboard-topnotes.html new file mode 100644 index 000000000..28ca025a0 --- /dev/null +++ b/httemplate/elements/dashboard-topnotes.html @@ -0,0 +1,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> |