fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Translators as authors.
[wolnelektury.git]
/
src
/
references
/
models.py
diff --git
a/src/references/models.py
b/src/references/models.py
index
c986471
..
d4733ff
100644
(file)
--- a/
src/references/models.py
+++ b/
src/references/models.py
@@
-65,7
+65,8
@@
class Entity(models.Model):
result_data['thumbwidth'],
result_data['thumbheight']
]
result_data['thumbwidth'],
result_data['thumbheight']
]
- image_data['responsiveUrls'] = result_data['responsiveUrls']
+ if 'responsiveUrls' in result_data:
+ image_data['responsiveUrls'] = result_data['responsiveUrls']
image_data_list.append(image_data)
image_data_list.append(image_data)
@@
-75,8
+76,15
@@
class Entity(models.Model):
class Reference(models.Model):
book = models.ForeignKey('catalogue.Book', models.CASCADE)
entity = models.ForeignKey(Entity, models.CASCADE)
class Reference(models.Model):
book = models.ForeignKey('catalogue.Book', models.CASCADE)
entity = models.ForeignKey(Entity, models.CASCADE)
- first_section = models.CharField(max_length=255)
class Meta:
unique_together = (('book', 'entity'),)
class Meta:
unique_together = (('book', 'entity'),)
+
+class Occurence(models.Model):
+ reference = models.ForeignKey(Reference, models.CASCADE)
+ section = models.IntegerField()
+ html = models.TextField()
+
+ class Meta:
+ ordering = ('section',)