Hi *,

I am switching over from FormFu to FormBuilder and have a problem with my 
Catalyst application: I get the error "Couldn't render template file error - 
foo/bar: not found" when trying to access the 'bar' action in my 'foo' 
controller. Here is the situation:

In my controller Foo i have ...

"
package myapp::Controller::Foo;
...
use parent qw/Catalyst::Controller::FormBuilder Catalyst::Controller/;
...
sub bar : Local Form {
  my ($self, $c) = @_;
  if ($self->formbuilder->submitted && $self->formbuilder->validate) {
    $c->stash->{message} = "everything is ok";
  }
}
"

In root/forms/foo I have my bar.fb file ...

"
name: foo_bar
method: post
fields:
  something:
    type: text
  someother:
    type: text
submit: Here we go
"

And in root/src/foo I have my bar.tt2 file ...

"
[% FormBuilder.render %]
"

Any hints on how I can get this right?
Thanks in advance

Jens
-- 
Sensationsangebot verlängert: GMX FreeDSL - Telefonanschluss + DSL 
für nur 16,37 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K1308T4569a

_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to