{% extends "email/base.html" %} {% load posthog_assets %} {% load posthog_filters %} {% block preheader %}Materialized view failures in {{ team.name }}{% endblock %} {% block heading %}Materialized view failures{% endblock %} {% block section %}
Here is your daily summary of materialized views that failed in project {{ team.name }}. Views marked as paused have been disabled due to repeated failures and require manual intervention to resume.
| View | Error | Last run | Paused |
|---|---|---|---|
| {{ view.name|truncatechars:40 }} | {{ view.error|truncatechars:90 }} | {{ view.last_run_at }} | {% if view.paused %}✓{% else %}—{% endif %} |
Click any view name to open it in the SQL editor.
{% endblock %} {% block footer %} Need help? Visit support or read our documentation.