{% 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 }}
{% if farmer.hostname in daily_summaries and daily_summaries[farmer.hostname].chia_daily %}
{{ daily_summaries[farmer.hostname].chia_daily.message }}
{% else %}

Chia Daily Summary not yet found. Check Alerts configuration if missing more than 24 hours.

{% endif %}
{% if farmer.hostname in daily_summaries and daily_summaries[farmer.hostname].flax_daily %}
{{ daily_summaries[farmer.hostname].flax_daily.message }}
{% else %}

Flax Daily Summary not yet found. Check Alerts configuration if missing more than 24 hours.

{% endif %}
{% if disk_usage[farmer.hostname] %} {% else %}

No plots disk stats recorded recently for {{farmer.hostname}}. Please ensure all paths containing plots have been configured. Also ensure the worker is reporting into the controller on the Workers page.

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