mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #14402 -- Removed clearing of help_text for ManyToManyField's raw_id_fields.
This commit is contained in:
parent
9644e2e968
commit
c79852acee
3 changed files with 12 additions and 2 deletions
|
@ -68,7 +68,12 @@ class Event(models.Model):
|
|||
limit_choices_to=models.Q(pk__gt=0),
|
||||
related_name='events_main_band_at',
|
||||
)
|
||||
supporting_bands = models.ManyToManyField(Band, blank=True, related_name='events_supporting_band_at')
|
||||
supporting_bands = models.ManyToManyField(
|
||||
Band,
|
||||
blank=True,
|
||||
related_name='events_supporting_band_at',
|
||||
help_text='Supporting Bands.',
|
||||
)
|
||||
start_date = models.DateField(blank=True, null=True)
|
||||
start_time = models.TimeField(blank=True, null=True)
|
||||
description = models.TextField(blank=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue