add help text to relationship mapper
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / View / TT.pm
CommitLineData
5c9ecf66 1package stemmaweb::View::TT;
dbcf12a6 2
3use strict;
4use warnings;
5
6use base 'Catalyst::View::TT';
7
8__PACKAGE__->config(
9 TEMPLATE_EXTENSION => '.tt',
10 INCLUDE_PATH => [
5c9ecf66 11 stemmaweb->path_to( 'root', 'src' ),
dbcf12a6 12 ],
593d5700 13 ENCODING => 'utf-8',
dbcf12a6 14 render_die => 1,
15);
16
17=head1 NAME
18
5c9ecf66 19stemmaweb::View::TT - TT View for stemmaweb
dbcf12a6 20
21=head1 DESCRIPTION
22
5c9ecf66 23TT View for stemmaweb.
dbcf12a6 24
25=head1 SEE ALSO
26
5c9ecf66 27L<stemmaweb>
dbcf12a6 28
29=head1 AUTHOR
30
31Tara L Andrews
32
33=head1 LICENSE
34
35This library is free software. You can redistribute it and/or modify
36it under the same terms as Perl itself.
37
38=cut
39
401;