{% extends "base.html" %} {% block content %}
Pools - Status
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'message' %} {% if pools.rows|length > 0 %}
{% for pool in pools.rows %}
Pool: {{ pool.pool_state.pool_config.pool_url }}
  • Status: {{pool.status}}
  • Current Difficulty: {{pool.pool_state.current_difficulty}}
  • Current Points Balance: {{pool.pool_state.current_points}}
  • Points Found Since Start: {{pool.pool_state.points_found_since_start}}
  • Points Found in Last 24 Hours: {{pool.pool_state.points_found_24h|length}}
  • Points Successful in Last 24 Hours: {{ pool.points_successful_last_24h }}
Launcher ID: {% if pool.login_link %} {{ pool.launcher_id }} {% else %} {{ pool.launcher_id }} {% endif %}
{% endfor %}
{% else %}
No Chia pools have been found.
Please select the Settings | Pools page to get started.
For more, see the Machinaris wiki.


{% endif %} {% endblock %} {% block scripts %} {% endblock %}