django_pfm/pfm/templates/pfm/test.html
2017-10-31 16:37:02 +03:00

13 lines
226 B
HTML

{% extends 'pfm/base.html' %}
{% block content %}
<table class="striped bordered">
{% for item in status %}
<tr>
<td>{{ item.Name|cut:"/RUB" }}</td><td> {{ item.Bid }}<td>
</tr>
{% endfor %}
</table>
{% endblock content %}