以下の miembros/actions/actions.class.php にこのアクションがあります。
public function executeFoo(sfWebRequest $request){
return $this->renderPartial('foo');
}
miembros/templatesには _ foo.phpがあります
実行すると、 frontend/config/view.ymlにある css ファイルが読み込まれません。in _ foo.phpも使用してみました:
<?php use_stylesheet('my_css_file.css') ?>
しかし、それも機能しません...
アクションが空で、私がpruebaSuccess.phpファイルを持っていても問題ありません。
何か案が?
ハビ