-# 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.conf import settings
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.db.models.signals import pre_delete
-from django.utils.translation import gettext_lazy as _
from catalogue.models import Book, Tag
class Deleted(models.Model):
object_id = models.IntegerField()
- slug = models.SlugField(_('slug'), max_length=120, blank=True, db_index=True)
+ slug = models.SlugField('slug', max_length=120, blank=True, db_index=True)
content_type = models.ForeignKey(ContentType, models.CASCADE)
category = models.CharField(max_length=64, null=True, blank=True, db_index=True)
created_at = models.DateTimeField(editable=False, db_index=True)
complete = models.BooleanField(default=False)
last_changed = models.DateTimeField(auto_now=True)
+ class Meta:
+ unique_together = [('user', 'book')]
+
@property
def state(self):
return 'complete' if self.complete else 'reading'