diff --git a/combo/data/models.py b/combo/data/models.py index 6f2a3e38..241772f3 100644 --- a/combo/data/models.py +++ b/combo/data/models.py @@ -442,7 +442,8 @@ class MenuCell(CellBase): class LinkCell(CellBase): title = models.CharField(_('Title'), max_length=150, blank=True) url = models.URLField(_('URL'), blank=True) - link_page = models.ForeignKey('data.Page', related_name='link_cell', blank=True, null=True) + link_page = models.ForeignKey('data.Page', related_name='link_cell', blank=True, + null=True, verbose_name=_('Internal link')) anchor = models.CharField(_('Anchor'), max_length=150, blank=True) template_name = 'combo/link-cell.html'