X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/413a1d782784e0ae9637349a576c4fc03789d384..7dd21f50786ef999aa6ccdc1a2ffc3a1caf5c85c:/catalogue/models.py
diff --git a/catalogue/models.py b/catalogue/models.py
index 1b5a32ff9..11d1aa77e 100644
--- a/catalogue/models.py
+++ b/catalogue/models.py
@@ -1,9 +1,11 @@
# -*- coding: utf-8 -*-
from django.db import models
-from django.db.models import permalink
+from django.db.models import permalink, Q
from django.utils.translation import ugettext_lazy as _
from django.contrib.auth.models import User
from django.core.files import File
+from django.template.loader import render_to_string
+from django.utils.safestring import mark_safe
from newtagging.models import TagBase
from newtagging import managers
@@ -42,7 +44,7 @@ class Tag(TagBase):
def has_description(self):
return len(self.description) > 0
- has_description.short_description = _('Has description')
+ has_description.short_description = _('description')
has_description.boolean = True
@permalink
@@ -71,6 +73,7 @@ class Book(models.Model):
slug = models.SlugField(_('slug'), unique=True, db_index=True)
description = models.TextField(_('description'), blank=True)
created_at = models.DateTimeField(_('creation date'), auto_now=True)
+ _short_html = models.TextField(_('short HTML'))
# Formats
xml_file = models.FileField(_('XML file'), upload_to='books/xml', blank=True)
@@ -81,9 +84,29 @@ class Book(models.Model):
objects = managers.ModelTaggedItemManager(Tag)
tags = managers.TagDescriptor(Tag)
+ def short_html(self):
+ if len(self._short_html):
+ return mark_safe(self._short_html)
+ else:
+ tags = self.tags.filter(~Q(category__in=('set', 'theme')))
+ tags = [u'%s' % (tag.get_absolute_url(), tag.name) for tag in tags]
+
+ formats = []
+ if self.html_file:
+ formats.append(u'Czytaj online' % self.html_file.url)
+ if self.pdf_file:
+ formats.append(u'Plik PDF' % self.pdf_file.url)
+ if self.odt_file:
+ formats.append(u'Plik ODT' % self.odt_file.url)
+
+ self._short_html = render_to_string('catalogue/book_short.html',
+ {'book': self, 'tags': tags, 'formats': formats})
+ self.save()
+ return mark_safe(self._short_html)
+
def has_description(self):
return len(self.description) > 0
- has_description.short_description = _('Has description')
+ has_description.short_description = _('description')
has_description.boolean = True
def has_pdf_file(self):
@@ -178,5 +201,5 @@ class Fragment(models.Model):
class Meta:
ordering = ('book', 'anchor',)
verbose_name = _('fragment')
- verbose_name_plural = _('fragment')
+ verbose_name_plural = _('fragments')