Tagged Questions
2
votes
1answer
169 views
sorl-thumbnail unit tests fail by 1 pixel (!)
I'm using sorl-thumbnail in a Django 1.2 (currently 1.2 RC) project and getting a surprising failure of four of sorl's built-in unit tests. Essentially, the resized images are all 1px shorter than the ...
1
vote
1answer
108 views
change format sorl thumbnail
can someone please give me an example of how to change the SORL-thumbnail format in the django template tag.
I've read the documentation here: http://thumbnail.sorl.net/template.html#thumbnail
and ...
1
vote
1answer
370 views
Use django sorl-thumbnail with django form-utils
How do I implement sorl thumbnailing in django form utils?
So the form utils documentation says this about its ImageWidget:
(Thumbnails only available if
sorl-thumbnail is installed; otherwise
...
1
vote
0answers
121 views
Thumbnails of ImageField of Many-to-Many relationship list in the admin interface
I have two models, Post and Photo. Photo contains information about photos, the date the original photo was uploaded (or alternatively - shot), a description, a title and more. The post contains post ...
1
vote
1answer
760 views
Django / Python / PIL / sorl-thumbnail generation in bulk - memory error
I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and then call ...
1
vote
1answer
93 views
paths not being consistent python django
I'm trying to import sorl-thumbnail into my app in django. Now the way that i have the site set up, using mod_wsgi on centos5 with cpanel the path for the apps must have the project name when ...
0
votes
1answer
37 views
Django - sorl-thumbnail - accessing thumbnail image from view functions
I am currently using sorl-thumbnail and have a model.
class Entry(models.Model):
image = ImageWithThumbnailsField(upload_to='uploads/', null=False, blank=True,
thumbnail={
...
0
votes
2answers
424 views
Django: sorl-thumbnail and hosting image files on my own file server
I like very much sorl-thumbnail library and I want to store image files not in current application (django) server, but to (another) my own file server with webserver for serving static files.
Do I ...
0
votes
1answer
306 views
sorl-thumbnail and file renaming
having a similar model:
class Foo(models.Model):
slug = models.SlugField(unique=True)
img = ImageWithThumbnailsField(upload_to='uploads/',thumbnail={'size': (56, 34)})
It works fine but I ...
0
votes
1answer
110 views
Avoiding thumbnail name collisions with sorl-thumbnail
Understanding that I should probably just dig into the source to come up with a solution, I'm wondering if anyone has come up with a tactic for dealing with this.
In my project, I have a lot of ...
0
votes
3answers
2k views
sorl.thumbnail : 'thumbnail' is not a valid tag library?
I am trying to install sorl.thumbnail but am getting the following error message:
'thumbnail' is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module ...