我在我的django模型中使用ImageField
来拥有图片上传工具。 ImageField
使用ClearableFileInput
小部件,但它不提供格式良好的html标记,我可以使用CSS自定义。下面显示的是由ClearableFileInput
呈现的html标记。
<div class="form-group" id="div_id">
<label class="control-label " for="id_image">
Guide
</label>
<div class="controls ">
Currently:
<a href="/media/ide.png">de.png</a>
<input type="checkbox" name="image_" id="image_">
<label for="image_te">
Clear
</label><br>
Change:
<input type="file" name="image_te" id="id_i" class="clearablefileinput">
</div>
</div>
我想要做的就是为这些元素添加自定义css类并根据需要更改顺序。如果有人可以建议我解决这个问题,那将是非常好的。
答案 0 :(得分:1)
只需创建自己的Input类并将render callable更改为您想要的任何内容。作为一个例子,这是我在一个小化身中添加的一个。它既快又脏,因为它不是干的,但它有一个目的:
class AvatarInput(ClearableFileInput):
'''renders the input file as an avatar image, and removes the 'currently' html'''
template_with_initial = u'%(initial)s %(clear_template)s<br />%(input_text)s: %(input)s'
def render(self, name, value, attrs=None):
substitutions = {
'input_text': self.input_text,
'clear_template': '',
'clear_checkbox_label': self.clear_checkbox_label,
}
template = u'%(input)s'
substitutions['input'] = super(AvatarInput, self).render(name, value, attrs)
if value and hasattr(value, "url"):
template = self.template_with_initial
substitutions['initial'] = (u'<img src="%s" width="60" height="60"></img>'
% (escape(value.url)))
if not self.is_required:
checkbox_name = self.clear_checkbox_name(name)
checkbox_id = self.clear_checkbox_id(checkbox_name)
substitutions['clear_checkbox_name'] = conditional_escape(checkbox_name)
substitutions['clear_checkbox_id'] = conditional_escape(checkbox_id)
substitutions['clear'] = CheckboxInput().render(checkbox_name, False, attrs={'id': checkbox_id})
substitutions['clear_template'] = self.template_with_clear % substitutions
return mark_safe(template % substitutions)
然后将其放入表单类Meta:
class Meta:
model = <your model>
widgets = {'your-field-name': AvatarInput()