fnp
/
edumed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
045df7c
)
attachments by slugs with extensions
author
Jan Szejko
<janek37@gmail.com>
Wed, 25 Jan 2017 14:49:35 +0000
(15:49 +0100)
committer
Jan Szejko
<janek37@gmail.com>
Wed, 25 Jan 2017 14:49:35 +0000
(15:49 +0100)
catalogue/models.py
patch
|
blob
|
history
diff --git
a/catalogue/models.py
b/catalogue/models.py
index
6a3bbb7
..
f518743
100644
(file)
--- a/
catalogue/models.py
+++ b/
catalogue/models.py
@@
-159,7
+159,7
@@
class Lesson(models.Model):
if attachments is None:
attachments = {}
for attachment in self.attachment_set.all():
- full_name = os.path.join(settings.MEDIA_ROOT,
attachment.file.name
)
+ full_name = os.path.join(settings.MEDIA_ROOT,
'%s.%s' % (attachment.file.name, attachment.ext)
)
f = IOFile.from_filename(full_name)
attachments[attachment.slug] = f
infile = IOFile.from_filename(self.xml_file.path, attachments=attachments)