Add sitemap
[django-migdal.git] / migdal / helpers.py
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.
4 #
5 class EntryType(object):
6     def __init__(self, db, slug, commentable=False, on_main=False,
7             promotable=False, categorized=False):
8         self.db = db
9         self.slug = slug
10         self.commentable = commentable
11         self.on_main = on_main
12         self.promotable = promotable
13         self.categorized = categorized
14
15     def __unicode__(self):
16         return unicode(self.slug)