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

7 lines
210 B
HTML
Raw Normal View History

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