Created
April 19, 2020 19:39
-
-
Save elminson/54dfa7ac26842d3a695eb585946c54cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "layout.html" %} | |
{% block content %} | |
<table border="1" style="width: 80%;"> | |
<thead> | |
<tr> | |
<td>Product</td> | |
<td>Description</td> | |
<td>Value</td> | |
<td>Date</td> | |
</tr> | |
</thead> | |
<tbody> | |
{% for product in products %} | |
<tr> | |
<td>{{ product.name }}</td> | |
<td>{{ product.description }}</td> | |
<td>{{ product.value }}</td> | |
<td>{{ product.date_register|date("m/d/Y") }}</td> | |
</tr> | |
{% endfor %} | |
</tbody> | |
</table> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment