Skip to content

Instantly share code, notes, and snippets.

@renyi
Created May 22, 2011 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renyi/985439 to your computer and use it in GitHub Desktop.
Save renyi/985439 to your computer and use it in GitHub Desktop.
Sorl thumbs for the lazy
'''
Usage: {% thumb p.image "noimage.png" %}
'''
# tags.py
from django import template
register = template.Library()
@register.inclusion_tag("includes/thumb.html")
def thumb(img_obj, no_image="noimage.png", dim="100x100", no_image_dim="100px", ori="600"):
return { 'img_obj': img_obj,
'no_image':no_image,
'dim': dim,
'no_image_dim':no_image_dim,
'ori':ori, }
# includes/thumb.html
{% load thumbnail %}
{% thumbnail img_obj dim crop="80% top" as im %}
{% thumbnail img_obj ori as ori %}
<a class="product_image" href="{{ ori.url }}" title="{{ img_obj.name|title }}">
<img src="{{ im.url }}" style="width:{{ im.width }};height:{{ im.height }};">
</a>
{% endthumbnail %}
{% empty %}
<img src="{{ no_image }}" style="width:{{ no_image_dim }};height:{{ no_image_dim }};">
{% endthumbnail %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment