Compare commits

..

No commits in common. "4c43f875607928e6ff81eaee3ac02cfac50b70b0" and "f7dab77229dcc2da4534e00c13feefa851b830f1" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from django.conf import settings
settings.THUMBNAIL_ALIASES = {
'': {
'thumbnail': {'size': (300, 200), 'sharpen': True, 'crop': True, 'upscale': True},
'thumbnail': {'size': (300, 200), 'sharpen': True, 'crop': True},
'hero': {'size': (700, 466), 'sharpen': True, 'crop': True},
'large': {'size': (1920, 1920), 'sharpen': True, 'crop': False},
},

View File

@ -4,5 +4,4 @@
from django.apps import AppConfig
class LostplacesAppConfig(AppConfig):
default_auto_field = 'django.db.models.AutoField'
name = 'lostplaces'