エンティティに callBack メソッドがあります
@Assert\Callback(methods={"isStudentsOK"})
....
public function isStudentsOK(ExecutionContext $context)
{
if ( $this->students->isEmpty())
$context->addViolationAtSubPath('students', 'Missing students informations', array(), null);
}
テンプレートのメッセージを翻訳したいです。
{{ form_errors(form.student)|trans }}
うまくいきません...私はこれを持っています
<span class="help-inline">Missing students informations</span>
バグですか?どのようにできるのか ?
編集
私は自分で応答を見つけました:
BootstrapBundle をインストールしました{% block form_errors %}
が、スパン内に表示されます
form_div_layout.html.twig
テンプレートをオーバーライドしました。