[10/40] Work on Label Tool Homepage.
[koha.git] / labels / label-home.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use CGI;
5 use C4::Auth;
6 use C4::Output;
7 use C4::Context;
8 use HTML::Template::Pro;
9
10 my $cgi = new CGI;
11 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
12     {
13         template_name   => "labels/label-home.tmpl",
14         query           => $cgi,
15         type            => "intranet",
16         authnotrequired => 0,
17         flagsrequired   => { catalogue => 1 },
18         debug           => 1,
19     }
20 );
21
22 output_html_with_http_headers $cgi, $cookie, $template->output;