Skip to content

Instantly share code, notes, and snippets.

@elminson
Created April 19, 2020 19:39
Show Gist options
  • Save elminson/54dfa7ac26842d3a695eb585946c54cb to your computer and use it in GitHub Desktop.
Save elminson/54dfa7ac26842d3a695eb585946c54cb to your computer and use it in GitHub Desktop.
{% 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