X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0bb4b49616832fb5bd8b92395dcb151b19373c0e..eee26362c631db7fd31cc210694dedd6f8f2961b:/src/picture/tasks.py?ds=inline diff --git a/src/picture/tasks.py b/src/picture/tasks.py deleted file mode 100644 index b44c96e3a..000000000 --- a/src/picture/tasks.py +++ /dev/null @@ -1,20 +0,0 @@ -# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. -# -import json -from celery import shared_task -from django.core.files.base import ContentFile -from django.template.loader import render_to_string - - -@shared_task -def generate_picture_html(picture_id): - import picture.models - pic = picture.models.Picture.objects.get(pk=picture_id) - areas_json = json.loads(pic.areas_json) - - html_text = render_to_string('picture/picture_info.html', { - 'things': areas_json['things'], - 'themes': areas_json['themes'], - }) - pic.html_file.save("%s.html" % pic.slug, ContentFile(html_text))