{% extends "base_operator.html" %} {% block title %}Blocks — operator{% endblock %} {% set page = 'op-blocks' %} {% block page_title %}Blocks{% endblock %} {% block topbar %}{{ blocks|length }} on {{ coin.ticker }}{% endblock %} {% block content %}
{% if blocks %} {% for b in blocks %} {% endfor %}
HeightFoundFinderRewardConfsStatus
{{ b.height }} ↗ {{ b.found_ts | date_short }} {{ b.finder | truncate_mid }} {{ b.reward | coin_amount_short }} {{ b.confirmations }} {% if b.status == 'confirmed' %}confirmed{% elif b.status == 'orphan' %}orphan{% elif b.status == 'immature' %}immature{% else %}{{ b.status }}{% endif %}
{% else %}
No blocks found yet
{% endif %}
{% endblock %}