k4ever/k4ever/buyable/templates/buyables/showItems.html

9 lines
213 B
HTML
Raw Normal View History

2010-10-16 17:33:18 +02:00
{% extends "base.html" %}
{% block "content" %}
{% for item in items %}
2011-09-28 10:51:32 +02:00
<img src="{{ MEDIA_URL }}{{ item.image }}">{{ item }}
<a href="/store/show/{{ item.id }}">{{ item.name }}</a>
2010-10-16 17:33:18 +02:00
{% endfor %}
2011-09-28 10:51:32 +02:00
{% endblock %}