From: Ivan Kohler Date: Tue, 10 Nov 2020 19:30:07 +0000 (-0800) Subject: add config to display note at top, RT#84990 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=6053a0a3a5baeb1c9f55e5df39bbc999c8ec8926 add config to display note at top, RT#84990 --- 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 ) { + + +
+ <% $notes %> +
+
+% } +<%init> + +my $conf = new FS::Conf; + +my $notes = join('
', map encode_entities($_), $conf->config('dashboard-topnotes') ); + +