kenken999's picture
te
a746d34
raw
history blame
228 Bytes
{% extends 'base.html' %}
{% block content %}
<h1>Scrape Result</h1>
<ul>
{% for product in products %}
<li>{{ product.name }} ({{ product.price }})</li>
{% endfor %}
</ul>
{% endblock %}