-# 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
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)