forked from 0x2620/pandora
matches, subtitles, parts
This commit is contained in:
parent
c01bb87c13
commit
c2981681c1
5 changed files with 42 additions and 14 deletions
|
|
@ -400,8 +400,8 @@ class Item(models.Model):
|
|||
save('trivia', ' '.join(self.get('trivia', [])))
|
||||
|
||||
#FIXME:
|
||||
qs = Annotation.objects.filter(layer__type='subtitle', item=self).order_by('start')
|
||||
save('dialog', '\n'.join([l.value for l in qs]))
|
||||
qs = Annotation.objects.filter(layer__name='subtitles', item=self).order_by('start')
|
||||
save('subtitles', '\n'.join([l.value for l in qs]))
|
||||
|
||||
def update_sort(self):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue