oswilno/assets/templates/marketplace/index.html

13 lines
355 B
HTML
Raw Normal View History

2022-07-15 16:00:00 +02:00
{% extends "../base.html" %}
{% block content %}
2022-07-18 16:23:07 +02:00
<marketplace-offers>
{% for offer in offers %}
<marketplace-offer
offer-id="{{offer.id}}"
description="{{offer.description}}"
picture-url="{{offer.picture_url}}"
></marketplace-offer>
{% endfor %}
</marketplace-offers>
2022-07-15 16:00:00 +02:00
{% endblock %}