fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Support audiobook > 24h
[wolnelektury.git]
/
src
/
sponsors
/
models.py
diff --git
a/src/sponsors/models.py
b/src/sponsors/models.py
index
856ed9a
..
80412fc
100644
(file)
--- a/
src/sponsors/models.py
+++ b/
src/sponsors/models.py
@@
-1,5
+1,5
@@
-# 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.
#
import json
import time
#
import json
import time
@@
-24,6
+24,11
@@
class Sponsor(models.Model):
def __str__(self):
return self.name
def __str__(self):
return self.name
+ def save(self, *args, **kwargs):
+ super().save(*args, **kwargs)
+ for page in SponsorPage.objects.all():
+ page.save()
+
def description(self):
if len(self._description):
return self._description
def description(self):
if len(self._description):
return self._description