]> git.0d.be Git - chloro.git/blob - chloro/phyll/models.py
do not include non-feed posts on homepage
[chloro.git] / chloro / phyll / models.py
1 # chloro - personal space
2 # Copyright (C) 2019  Frederic Peters
3 #
4 # This program is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published
6 # by the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 from django.db import models, transaction
18 from django.utils.translation import ugettext_lazy as _
19 from taggit.managers import TaggableManager
20
21 from .fields import RichTextField
22
23
24 class Note(models.Model):
25     title = models.CharField(_('Title'), max_length=150)
26     slug = models.SlugField(_('Slug'), max_length=150)
27     text = RichTextField(_('Text'), blank=True, null=True)
28     tags = TaggableManager(_('Tags'), blank=True)
29     published = models.BooleanField(_('Published'), default=True)
30     creation_timestamp = models.DateTimeField(auto_now_add=True)
31     last_update_timestamp = models.DateTimeField(auto_now=True)
32
33     class Meta:
34         ordering = ['-creation_timestamp']
35
36     def get_absolute_url(self):
37         return '/%s/' % self.slug
38
39     def lang(self):
40         if self.tags.filter(name='lang-en').exists():
41             return 'en'
42         return 'fr'