Currently, I think you'd need to set the views setting before the template call, then change it back afterwards, for instance:
my $views_dir = setting('views'); # remember current setting
setting 'views' => '/some/other/path'; # temporarily use our desired path
my $content = template 'test', $params; # render the view
setting 'views' => $views_dir; # restore previous setting
return $content;
That, however, is ugly.
I think it would make sense for the template keyword to accept a system_path option, much like send_file does, so you could say, e.g.:
template '/path/to/view.tt', $params, { system_path => 1 };
I've raised an issue for this, and will look in to getting it implemented for the next release: https://github.com/sukria/Dancer/issues/645
(Disclosure: I'm part of the Dancer dev team)