in reply to Template Toolkit Path

You could probably get at it with something like:
use Cwd; use File::Spec; print "In directory ->", File::Spec->catfile(cwd(), '..\admin\templates'), "<-\n";
However, the problem may be that TT2 expects colon-delimited directories in INCLUDE_PATH. You can also pass an array reference, or set the DELIMITER option so it expects the semi-colon. Give that a whirl.