fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add basic login.
[wolnelektury.git]
/
src
/
catalogue
/
models
/
collection.py
diff --git
a/src/catalogue/models/collection.py
b/src/catalogue/models/collection.py
index
2c9a348
..
f6284ad
100644
(file)
--- a/
src/catalogue/models/collection.py
+++ b/
src/catalogue/models/collection.py
@@
-1,37
+1,34
@@
-# This file is part of Wolne
l
ektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja
Nowoczesna Polska
. See NOTICE for more information.
+# This file is part of Wolne
L
ektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja
Wolne Lektury
. See NOTICE for more information.
#
from django.conf import settings
from django.db import models
from django.urls import reverse
#
from django.conf import settings
from django.db import models
from django.urls import reverse
-from django.utils.translation import gettext_lazy as _
import re
from wolnelektury.utils import cached_render, clear_cached_renders
class Collection(models.Model):
"""A collection of books, which might be defined before publishing them."""
import re
from wolnelektury.utils import cached_render, clear_cached_renders
class Collection(models.Model):
"""A collection of books, which might be defined before publishing them."""
- title = models.CharField(
_('title')
, max_length=120, db_index=True)
- slug = models.SlugField(
_('slug')
, max_length=120, primary_key=True)
- description = models.TextField(
_('description')
, blank=True)
- book_slugs = models.TextField(
_('book slugs')
)
+ title = models.CharField(
'tytuł'
, max_length=120, db_index=True)
+ slug = models.SlugField(
'slug'
, max_length=120, primary_key=True)
+ description = models.TextField(
'opis'
, blank=True)
+ book_slugs = models.TextField(
'slugi książek'
)
authors = models.ManyToManyField(
'Tag',
limit_choices_to={'category': 'author'},
blank=True
)
authors = models.ManyToManyField(
'Tag',
limit_choices_to={'category': 'author'},
blank=True
)
- kind = models.CharField(_('kind'), max_length=10, blank=False, default='book', db_index=True,
- choices=(('book', _('book')), ('picture', _('picture'))))
- listed = models.BooleanField(_('listed'), default=True, db_index=True)
+ listed = models.BooleanField('na liście', default=True, db_index=True)
role = models.CharField(max_length=128, blank=True, db_index=True, choices=[
('', '–'),
role = models.CharField(max_length=128, blank=True, db_index=True, choices=[
('', '–'),
- ('recommend',
_('recommended')
),
+ ('recommend',
'polecane'
),
])
class Meta:
ordering = ('title',)
])
class Meta:
ordering = ('title',)
- verbose_name =
_('collection')
- verbose_name_plural =
_('collections')
+ verbose_name =
'kolekcja'
+ verbose_name_plural =
'kolekcje'
app_label = 'catalogue'
def __str__(self):
app_label = 'catalogue'
def __str__(self):