Hi all,
how can I do redirect to same Presenter but diffrent template.latte? Thank you. … from another latte
Last edited by Takeshi (2013-11-21 17:19)
Templates are connecter with render method (view). Redirect to another view:
// in presenter $this->redirect('anotherView');
Redirecting should happened before render* phase. do it in signals (handle*) or action* methods.
Last edited by hrach (2013-11-21 17:21)