Files
market/trading/templates/trading/t/detail.html
2020-03-26 15:18:41 -04:00

32 lines
851 B
HTML

{% extends "trading/base.html" %}
{% load bootstrap4 %}
{% load humanize %}
{% block title %}
{% with title="Transaction detail" %}
{{ block.super }}
{% endwith %}
{% endblock title %}
{% block content %}
<div class="row">
<div class="col-sm">
<table class="table">
<thead>
<tr>
<th>Commodity sent</th>
<th>Commodity received</th>
<th>Amount sent</th>
<th>Amount received</th>
<th>Status</th>
<th>ID</th>
</tr>
</thead>
<tbody>
{% include "trading/t/detail_row.html" %}
</tbody>
</table>
</div>
</div>
{% endblock %}