2017-06-10 23:26:10 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% include "admin/admin_tasks.html" %}
|
|
|
|
|
|
|
|
<div class="col-md-12">
|
2017-07-25 10:33:23 -04:00
|
|
|
<div class="panel panel-info">
|
2017-06-10 23:26:10 -04:00
|
|
|
<div class="panel-heading">Transactions</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-hover table-striped table-condensed cf">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
<th>Date</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{% for transaction in transactions %}
|
|
|
|
{% if transaction.value > 0 %}
|
|
|
|
<tr class="default">
|
|
|
|
<td><span class="glyphicon glyphicon-asterisk"></span></td>
|
|
|
|
<td>{{ transaction.description }}</td>
|
|
|
|
<td>{{ transaction.value }} {{ transaction.currency }}</td>
|
2017-06-11 22:12:27 -04:00
|
|
|
<td>{{ moment(transaction.date_created).format('lll') }}</td>
|
2017-06-10 23:26:10 -04:00
|
|
|
<td><a href="{{ url_for('admin.transaction', user_pid=transaction.owner.pid) }}">{{ transaction.owner.email }}</a></td>
|
|
|
|
{% else %}
|
|
|
|
<tr class="success">
|
|
|
|
<td><span class="glyphicon glyphicon-plus"></span></td>
|
|
|
|
<td>{{ transaction.description }}</td>
|
|
|
|
<td>{{ transaction.value }} {{ transaction.currency }}</td>
|
2017-06-11 22:12:27 -04:00
|
|
|
<td>{{ moment(transaction.date_created).format('lll') }}</td>
|
2017-06-10 23:26:10 -04:00
|
|
|
<td><a href="{{ url_for('admin.transaction', user_pid=transaction.owner.pid) }}">{{ transaction.owner.email }}</a></td>
|
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|