a90878c1b8
FossilOrigin-Name: 0d65589909abc6c72911d68ef4c03f48c7d3f552ba5c82d681964eefbf8a2128
19 lines
325 B
Perl
19 lines
325 B
Perl
package notifications;
|
|
|
|
use Exporter 'import';
|
|
|
|
our @EXPORT = qw( notification_compact );
|
|
|
|
use template_helpers 'to_template';
|
|
|
|
sub notification_compact
|
|
{
|
|
my ($ssn, $data, $notif) = @_;
|
|
|
|
my %vars = (
|
|
prefix => $ssn,
|
|
notif => $notif
|
|
);
|
|
|
|
to_template(\%vars, \$data->{'notif_compact.tt'});
|
|
}
|