I wanted users to be able to see larger product images, so I copied
product/product.html and product/detail_configurableproduct.html into
my own template directory and made a tiny change to the the pic
section:

{% for pic in product.productimage_set.all %}
    {% thumbnail pic.picture 280x280 as image %}
    {% thumbnail pic.picture 1000x1000 as image_big %}
    <a href="{{ image_big }}">
    <img src="{{ image }}" width="{{ image.width }}"
height="{{ image.height }}" />
    </a>
{% endfor %}


This works fine, but now I won't see future changes in those Satchmo
templates unless I copy them in to my versions each time I upgrade.
Is there a better way to do this to make it easier to upgrade?

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.

Reply via email to