X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9bc86f5a6542c5893ac94284da33162a7c7be2d6..HEAD:/src/infopages/models.py diff --git a/src/infopages/models.py b/src/infopages/models.py index c8720ae2d..d273b54a1 100644 --- a/src/infopages/models.py +++ b/src/infopages/models.py @@ -1,22 +1,26 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from django.db import models from django.urls import reverse -from django.utils.translation import gettext_lazy as _ class InfoPage(models.Model): """An InfoPage is used to display a two-column flatpage.""" - slug = models.SlugField(_('slug'), max_length=120, unique=True, db_index=True) - title = models.CharField(_('title'), max_length=120, blank=True) - left_column = models.TextField(_('left column'), blank=True) - right_column = models.TextField(_('right column'), blank=True) + slug = models.SlugField('slug', max_length=120, unique=True, db_index=True) + title = models.CharField('tytuł', max_length=120, blank=True) + published = models.BooleanField( + 'opublikowana', + help_text='Nieopublikowane strony są widoczne tylko dla administratorów.' + ) + findable = models.BooleanField('wyszukiwalna') + left_column = models.TextField('lewa kolumna', blank=True) + right_column = models.TextField('prawa kolumna', blank=True) class Meta: - verbose_name = _('info page') - verbose_name_plural = _('info pages') + verbose_name = 'strona informacyjna' + verbose_name_plural = 'strony informacyjne' def __str__(self): return self.title