I\'m new to Django (and Python) and I have been trying to work out a few things myself, before jumping into using other people\'s apps. I\'m having trouble understanding whe
A key question is: when should the thumbnail be generated?
If (1) I suggest you create a view that maps to url /flagthumbnail/countryid. The view method would then have to:
Whenever you need to display a thumbnail flag, just use .
If (2), you could connect to Django's django.db.models.signals.post_save signal and in the signal handler create and save a thumbnail file.