我目前正在使用django-widget-tweaks处理表单,我想在div中添加错误类而不是输入,这是我的代码
<div class="form-group">
<label class="control-label" for="id_title">Title</label>
{% render_field form.title|add_class:"form-control"%}
</div>
如果收到错误,应该是
<div class="form-group has-error">
<label class="control-label" for="id_title">Title</label>
<input type="text" name="title" value="akjdla" id="id_title" class="form-
control" required="" placeholder="Title" title="" maxlength="120">
<div class="help-block">This field is required.</div>
</div>
在文档中我发现只在输入中添加了类,如何将错误类添加到外部div并向其显示错误?
答案 0 :(得分:1)
switch_to_window()