X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e24e657ebf536f55c1bde66bd41563fae30a98b0..ca8f4e8fef80cb603117ed579da8554f503698e5:/src/infopages/models.py?ds=inline
diff --git a/src/infopages/models.py b/src/infopages/models.py
index ae7b5e311..d273b54a1 100644
--- a/src/infopages/models.py
+++ b/src/infopages/models.py
@@ -1,5 +1,5 @@
-# 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
@@ -10,6 +10,11 @@ class InfoPage(models.Model):
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)