{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{% if category == 'message' %}
{% else %}
{% endif %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% if not (global_config.farming_only or global_config.harvesting_only) %}
Plotting: {{ plotting.display_status }}
{% endif %}
{% if not (global_config.plotting_only or global_config.harvesting_only) %}
Farming: {{ farming.display_status }}
{% endif %}
{{ farming.plot_count }}
Total Plots
{% if not (global_config.plotting_only or global_config.harvesting_only) %}
{{ farming.total_chia }}
Total Chia
{% endif %}
{{ farming.plot_size }}
Total Plots Size
{% if not (global_config.plotting_only or global_config.harvesting_only) %}
{{ farming.display_network_size }}
Estimated Netspace Size
{% endif %}
{% if not global_config.plotting_only %}
Challenge
Plots Passed Filter
Proofs Found
Time Taken
Date
{% for challenge in challenges.rows %}
{{challenge.challenge_id}}
{{challenge.plots_past_filter}}
{{challenge.proofs_found}}
{{challenge.time_taken}}
{{challenge.created_at}}
{% endfor %}
{% if challenges.rows|length == 0 %}
No challenges found in Chia's log yet. Probably just starting up, syncing, or no plots yet...
If you have plots and this persists long, check the Alerts tab and review Chia's log.
See the FAQ.