Skip to content

Instantly share code, notes, and snippets.

@aballah-chamakh
Last active June 29, 2019 09:59
Show Gist options
  • Save aballah-chamakh/a7e4a09cc28ca9d9ad9f2923a3d13cfd to your computer and use it in GitHub Desktop.
Save aballah-chamakh/a7e4a09cc28ca9d9ad9f2923a3d13cfd to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Product list</tile>
</head>
<body>
{% for object in objects %}
<div>
<h3>{{object.title}}</h3>
<img src='{{object.image.url}}' />
<h5> price {{object.price}} </h5>
<hr/>
</div>
{% endfor %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment