Skip to content

Commit d6401f9

Browse files
committed
Admin interface needs core=True for edit_inline.
- Legacy-Id: 1448
1 parent 6f83b2e commit d6401f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idtracker/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Admin:
9595

9696
class AreaURL(models.Model):
9797
area = models.ForeignKey(Area, db_column='area_acronym_id', edit_inline=models.STACKED, num_in_admin=1, null=True, related_name='urls')
98-
url = models.URLField(maxlength=255, db_column='url_value')
98+
url = models.URLField(maxlength=255, db_column='url_value', core=True)
9999
url_label = models.CharField(maxlength=255, db_column='url_label')
100100
def __str__(self):
101101
return self.url

0 commit comments

Comments
 (0)