{% extends "base.html" %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'message' %}
{% for farmer in farmers %}
{{ farmer.displayname }}
{{_('Details')}}
{{_('IP Address')}} {{farmer.hostname}}
{{_('Hostname')}} {{farmer.displayname}}
{{_('Blockchains Farming')}} {{daily_summaries[farmer.displayname].keys()|join(', ')}}
{{_('Plot Counts')}} {{ farmer.plot_counts }}
{{_('Plot Types')}} {{ farmer.plot_types }}
{{_('Drive Count')}} {{farmer.drive_count}} {{_('devices')}}
{{_('Drive Usage')}} {{farmer.drive_usage}}
{% if farmer.displayname in daily_summaries %} {% endif %}
{% if disk_usage[farmer.hostname] %} {% if disk_usage[farmer.hostname]['paths']|length >= MAX_COLUMNS_ON_CHART %}

{{_('For legibility, the chart shows only a random selection of paths when a worker has many of them.')}}

{% endif %} {% else %} {% autoescape false %}

{{_('No plots disk stats recorded recently for %(hostname)s with Chia blockchain. Please ensure all paths containing plots have been %(wiki_link_open)s configured %(wiki_link_close)s. Also ensure the Chia worker is reporting into the controller on the Workers page.', hostname=farmer.hostname, wiki_link_open='', wiki_link_close='')}}

{% endautoescape %} {% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% for farmer in farmers %} {% if disk_usage[farmer.hostname] %} {% endif %} {% endfor %} {% endblock %}