本文整理汇总了Python中crispy_forms.utils.render_field方法的典型用法代码示例。如果您正苦于以下问题:Python utils.render_field方法的具体用法?Python utils.render_field怎么用?Python utils.render_field使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crispy_forms.utils
的用法示例。
在下文中一共展示了utils.render_field方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render
# 需要导入模块: from crispy_forms import utils [as 别名]
# 或者: from crispy_forms.utils import render_field [as 别名]
def render(self, form, form_style, context, template_pack=TEMPLATE_PACK,
extra_context=None, **kwargs):
extra_context = (extra_context.copy() if extra_context is not None
else {})
extra_context.update({
'radio_field': form[self.radio_field],
'input_size': self.input_size,
'active': getattr(self, "active", False)
})
if hasattr(self, 'wrapper_class'):
extra_context['wrapper_class'] = self.wrapper_class
template = self.get_template_name(template_pack)
return render_field(
self.field, form, form_style, context,
template=template, attrs=self.attrs,
template_pack=template_pack, extra_context=extra_context, **kwargs
)
示例2: render
# 需要导入模块: from crispy_forms import utils [as 别名]
# 或者: from crispy_forms.utils import render_field [as 别名]
def render(self, form, form_style, context, template_pack=TEMPLATE_PACK, **kwargs):
classes = form.fields[self.field].widget.attrs.get('class', '')
extra_context = {
'inputs': self.inputs,
'input_size': self.input_size,
'classes': classes.replace('form-control', '')
}
if hasattr(self, 'wrapper_class'):
extra_context['wrapper_class'] = self.wrapper_class
return render_field(
self.field, form, form_style, context, template=self.template,
attrs=self.attrs, template_pack=template_pack, extra_context=extra_context, **kwargs)
示例3: render
# 需要导入模块: from crispy_forms import utils [as 别名]
# 或者: from crispy_forms.utils import render_field [as 别名]
def render(self, form, form_style, context, template_pack='bootstrap'):
classes = form.fields[self.field].widget.attrs.get('class', '')
context.update(
{'inputs': self.inputs, 'classes': classes.replace('form-control', '')})
if hasattr(self, 'wrapper_class'):
context['wrapper_class'] = self.wrapper_class
return render_field(
self.field, form, form_style, context, template=self.template,
attrs=self.attrs, template_pack=template_pack)