{% extends "base.html" %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'message' %} {% if farming.expected_time_to_win != 'Unknown' %}

Expected Time to Win: {{ farming.expected_time_to_win }}

{% endif %}
{% if global_config.plotting_enabled %}
Plotting: {{ plotting.display_status }}
{% endif %} {% if global_config.farming_enabled %}
Farming: {{ farming.display_status }}
{% endif %}

{{ farming.plot_count }}

Total Plots
{% if global_config.farming_enabled %}

{{ farming.total_chia }}

Total Chia Farmed
{% endif %}

{{ farming.plots_display_size }}

Total Plots Size
{% if global_config.farming_enabled %}

{{ farming.netspace_display_size }}

Estimated Netspace Size
{% endif %}
{% if global_config.farming_enabled %}
{% include 'views/challenges.html' %}
{% endif %} {% endblock %}