我在我的Django應用程序中使用django-stdimage
,它的效果很好,唯一的問題是我想從HTML模板中刪除'Currently'字符串,清除複選框和其餘裝飾。我無法弄清楚如何實現這一點。使用django-stdimage時可以刪除'Currently'標籤嗎?
這裏是我的models.py
內StdImageField聲明:
photo = StdImageField(upload_to=join('img', 'agents'),
variations={'thumbnail': (100, 100, True)}, default=None,
null=True, blank=True,)
我已看過一些SO回答有關修改ImageField的小部件來使用類ClearableFileInput
,但似乎widget
屬性不允許爲StdImageField
類參數。
有沒有辦法去除所有這些裝飾?
謝謝。
刪除在哪裏?在表單中?在管理員? – Udi
刪除/隱藏它們在HTML模板中。我想我必須在models.py或forms.py – juankysmith
@juankysmith中進行一些修改我可能是錯的,但似乎'StdImageField'只能在模型級別運行。你不能在你的models.py中的Forms.py和'StdImageField'中使用帶有自定義小部件的'ImageField'嗎? – mateuszb