From: Ivan Kohler Date: Tue, 10 Nov 2020 19:30:04 +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=c2dbe36096332d1e09bc58d7d9903e05247f0c9b 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') ); + +