Opened 4 years ago
Last modified 4 years ago
#32467 closed Cleanup/optimization
django admin widget.attrs not work with ForeignKey — at Initial Version
Reported by: | Hassan Igbaria | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | 3.1 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
self.fieldsparent.widget.attrs = {'class': 'custom-class'}
parent is ForeignKey field
class Category(models.Model):
title = models.CharField(_('Title'), max_length=300)
description = models.TextField(_('Description'), null=True, blank=True)
is_active = models.BooleanField(_('Active ?'), default=True)
image = models.ImageField(
_('Image'), upload_to="category/", null=True, blank=True
)
parent = models.ForeignKey(
"self", verbose_name=_('Parent'), on_delete=models.SET_NULL,
null=True, blank=True
)