You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
980 B
36 lines
980 B
{% extends 'layout.html.twig' %} |
|
|
|
{% block title %}Credit Transactions{% endblock %} |
|
|
|
{% block body %} |
|
<h1>Credit Transactions</h1> |
|
|
|
<table> |
|
<thead> |
|
<tr> |
|
<th>ID</th> |
|
<th>NPub</th> |
|
<th>Type</th> |
|
<th>Amount</th> |
|
<th>Reason</th> |
|
<th>Timestamp</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{% for tx in transactions %} |
|
<tr> |
|
<td>{{ tx.id }}</td> |
|
<td><span title="{{ tx.npub }}"><twig:Molecules:UserFromNpub :ident="tx.npub" /></span></td> |
|
<td>{{ tx.type }}</td> |
|
<td>{{ tx.amount }}</td> |
|
<td>{{ tx.reason ?: '—' }}</td> |
|
<td>{{ tx.createdAt|date('Y-m-d H:i:s') }}</td> |
|
</tr> |
|
{% else %} |
|
<tr> |
|
<td colspan="6">No transactions found.</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
{% endblock %}
|
|
|