{% extends "trading/base.html" %} {% load bootstrap4 %} {% load humanize %} {% block title %} {% with title="Transaction detail" %} {{ block.super }} {% endwith %} {% endblock title %} {% block content %}
{% for object in object_list %} {% endfor %}
Commodity Delta Status Source Destination
{{ object.commodity.name }} {{object.amount|intcomma}} {{object.status}} {{object.source.username}} {{object.dest.username}}
{% endblock %}