Removed old django-thumbs thumbnail sizes and a rogue newline.

This commit is contained in:
Marcus Scholz 2020-08-03 21:49:12 +02:00
parent 86d0a300ae
commit e74bdd58d2
2 changed files with 0 additions and 7 deletions

View File

@ -71,12 +71,6 @@ class PlaceImage (models.Model):
Intermediate image sizes are generated as defined in SIZES.
PlaceImage references a Place to which it belongs.
"""
SIZES=(
{'code': 'thumbnail', 'wxh': '390x390'},
{'code': 'hero', 'wxh': '700x700'},
{'code': 'large', 'wxh': '1920x1920'}
)
description = models.TextField(blank=True)
filename = ThumbnailerImageField(upload_to=generate_image_upload_path)

View File

@ -37,7 +37,6 @@ class HomeView(View):
}
return render(request, 'home.html', context)
class PlaceUpdateView(UpdateView):
template_name = 'update_place.html'
model = Place