source: trunk/LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/View/TT.pm @ 1237

Last change on this file since 1237 was 511, checked in by nanardon, 15 years ago
  • use called module, fixing tests
File size: 691 bytes
Line 
1package LATMOS::Accounts::Web::View::TT;
2
3use strict;
4use base 'Catalyst::View::TT';
5use LATMOS::Accounts::Web;
6
7__PACKAGE__->config(
8    TEMPLATE_EXTENSION => '.tt',
9    INCLUDE_PATH => [
10        LATMOS::Accounts::Web->path_to( 'root', 'html' ),
11    ],
12    PRE_PROCESS  => 'includes/header.tt',
13    POST_PROCESS => 'includes/footer.tt',
14);
15
16=head1 NAME
17
18LATMOS::Accounts::Web::View::TT - TT View for LATMOS::Accounts::Web
19
20=head1 DESCRIPTION
21
22TT View for LATMOS::Accounts::Web.
23
24=head1 SEE ALSO
25
26L<LATMOS::Accounts::Web>
27
28=head1 AUTHOR
29
30Thauvin Olivier
31
32=head1 LICENSE
33
34This library is free software, you can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
38
391;
Note: See TracBrowser for help on using the repository browser.