1 # -*- coding: utf-8 -*-
2 # This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 class EntryType(object):
6 def __init__(self, db, slug, commentable=False, on_main=False,
7 promotable=False, categorized=False):
10 self.commentable = commentable
11 self.on_main = on_main
12 self.promotable = promotable
13 self.categorized = categorized
15 def __unicode__(self):
16 return unicode(self.slug)