fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Smaller icons.
[wolnelektury.git]
/
src
/
picture
/
models.py
diff --git
a/src/picture/models.py
b/src/picture/models.py
index
1ad09e2
..
3a05ad8
100644
(file)
--- a/
src/picture/models.py
+++ b/
src/picture/models.py
@@
-110,6
+110,9
@@
class Picture(models.Model):
verbose_name = _('picture')
verbose_name_plural = _('pictures')
verbose_name = _('picture')
verbose_name_plural = _('pictures')
+ def get_extra_info_json(self):
+ return json.loads(self.extra_info or '{}')
+
def save(self, force_insert=False, force_update=False, **kwargs):
from sortify import sortify
def save(self, force_insert=False, force_update=False, **kwargs):
from sortify import sortify
@@
-118,7
+121,7
@@
class Picture(models.Model):
try:
author = self.authors().first().sort_key
except AttributeError:
try:
author = self.authors().first().sort_key
except AttributeError:
- author =
u
''
+ author = ''
self.sort_key_author = author
ret = super(Picture, self).save(force_insert, force_update)
self.sort_key_author = author
ret = super(Picture, self).save(force_insert, force_update)