Skip to content

Instantly share code, notes, and snippets.

@timmyomahony
Created May 31, 2012 12:36
Show Gist options
  • Save timmyomahony/2843120 to your computer and use it in GitHub Desktop.
Save timmyomahony/2843120 to your computer and use it in GitHub Desktop.
sorl.thumbnail and easy_thumbnails together
{% load smart_load %}
{% load thumbnail from sorl.thumbnail as sorl_thumbnail %}
{% load thumbnail from easy_thumnails as easy_thumbnail %}
{% sorl_thumbnail image.image "100x100" as im %}
<img src='{{ im.url }}' />
{% endthumbnail %}
<img src='{% easy_thumbnail image.image "100x100" %}' />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment