From 839c21715cccac96da3daa5f446b21d146894d5c Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Fri, 29 May 2015 19:02:17 +0200 Subject: [PATCH] i18n: verbose_name for link_page in link cell --- combo/data/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'