X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/d91f22f8be9768ba873bbfb58bcfd26fc60ca9e1..87b88f4b3401e02b42ae96d7aaf99ba016571c0b:/src/archive/views.py diff --git a/src/archive/views.py b/src/archive/views.py index 62a1216..4ea199a 100644 --- a/src/archive/views.py +++ b/src/archive/views.py @@ -268,6 +268,17 @@ def file_managed(request, id): request.user.is_authenticated and request.user.oauthconnection_set.filter(access=True).exists()) + alerts = [] + series = models.Audiobook.objects.filter(url=audiobook.url) + real = series.count() + if real != audiobook.parts_count: + alerts.append(_('Parts number inconsitent. Declared number: %(declared)d. Real number: %(real)d') % {"declared": audiobook.parts_count, "real": real}) + if audiobook.parts_count > 1: + if not audiobook.index: + alerts.append(_('There is more than one part, but index is not set.')) + if set(series.values_list('index', flat=True)) != set(range(1, audiobook.parts_count + 1)): + alerts.append(_('Part indexes are not 1..%(parts_count)d.') % {"parts_count": audiobook.parts_count}) + return render(request, "archive/file_managed.html", locals())