Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webapp/polls/templates/image_option_thumbnail.html
blob: d65b16959bad657653007a8c240260b27a42492c (plain)
1
2
3
4
5
6
7
{% load thumbnail %}

<div class="thumbnail" style="width: 150px; height: 150px;" >
    {% thumbnail img "150x150" crop="center" as im %}
        <img src="{{ im.url }}" img_src="{{ img_src }}" />
    {% endthumbnail %}
</div>