<div class="col-xs-6 col-sm-4 col-lg-3 product-thumb slim_margins">
<a href="{{ product.get_absolute_url }}" class="thumbnail">
{% if product.image %}
- <img src="{{ MEDIA_URL }}{% thumbnail product.image 148 148 %}">
+ <img src="{{ MEDIA_URL }}{% thumbnail product.image 250 250 %}">
{% else %}
<div class="placeholder"></div>
{% endif %}
<div class="caption">
- <h6>{{ product }}</h6>
+ <h6>{{ product.record }}</h6>
<div class="price-info">
{% if product.variations.all %}
{% with product.variations.all as variations and True as category %}
{% block title %}
<span class="bg-white">
-{% editable product.title %}{{ product.title }}{% endeditable %}
+{{ product.record }}
</span>
{% endblock %}
{% for image in images %}
<li id="image-{{ image.id }}-large"{% if not forloop.first %}style="display:none;"{% endif %}>
<a class="product-image-large" href="{{ MEDIA_URL }}{{ image.file }}">
- <img alt="{{ image.description }}" src="{{ MEDIA_URL }}{% thumbnail image.file 0 300 %}" class="img-thumbnail img-responsive col-xs-12">
+ <img alt="{{ image.description }}" src="{{ MEDIA_URL }}{% thumbnail image.file 450 450 %}" class="img-thumbnail img-responsive col-xs-12">
</a>
</li>
{% endfor %}