{% extends "base_miner.html" %} {% block title %}Payments — {{ coin.display_name }} Pool{% endblock %} {% set page = 'payments' %} {% block content %}
| Date | Amount | Txid | Status |
|---|---|---|---|
| {{ p.time | date_short }} | {{ p.amount | coin_amount }} {{ coin.ticker }} | {% if p.txid %}{{ p.txid | truncate_mid }} ↗{% else %}—{% endif %} | {% if p.status == 'confirmed' %}confirmed{% elif p.status == 'sent' %}sent{% else %}failed{% endif %} |