{% extends "dashboard/base.html" %} {% load static %} {% block title %}{% if bulletin %}{{ bulletin.title }} — {% endif %}{{ title }}{% endblock %} {% block content %}
{% if logo_url %}
{% endif %}
{% if not bulletin %}

No Bulletin Available

No bulletin has been configured yet. Admins can create one from the CMS.

← Back to Dashboard
{% elif needs_login %}
{% if organization %}
{% if logo_url %}{% endif %} {{ organization }}
{% endif %}

{{ bulletin.title }}

{% else %}
← Dashboard
{% if organization %}
{% if logo_url %}{% endif %} {{ bulletin.get_bulletin_type_display }}
{% endif %}

{{ bulletin.title }}

{% if bulletin.subtitle %}

{{ bulletin.subtitle }}

{% endif %}
{% if bulletin.issued_date or bulletin.valid_until %}
{% if bulletin.issued_date %}
📅 Issued: {{ bulletin.issued_date }}
{% endif %} {% if bulletin.valid_until %}
📅 Valid until: {{ bulletin.valid_until }}
{% endif %}
{% endif %}
{% for section in before_sections %}

{{ section.heading }}

{{ section.content|safe }}
{% endfor %} {% if bulletin.summary %}

Executive Summary

{{ bulletin.summary|safe }}
{% endif %} {% for section in after_metrics_sections %}

{{ section.heading }}

{{ section.content|safe }}
{% endfor %} {% if expert_comments %}

Expert Commentary

{{ expert_comments|length }} specialist{{ expert_comments|length|pluralize }}

{% for ec in expert_comments %}
{{ ec.get_role_display }}
{% if ec.expert_name %}
{{ ec.expert_name }}{% if ec.expert_title %}, {{ ec.expert_title }}{% endif %}
{% endif %}
{{ ec.comment|safe }}
{% endfor %}
{% endif %} {% for section in after_maps_sections %}

{{ section.heading }}

{{ section.content|safe }}
{% endfor %} {% if bulletin.outlook %}

Forecast Outlook

{{ bulletin.outlook|safe }}
{% endif %} {% if bulletin.recommendations %}

Recommendations

{{ bulletin.recommendations|safe }}
{% endif %} {% for section in after_report_sections %}

{{ section.heading }}

{{ section.content|safe }}
{% endfor %}
{% endif %}
{% endblock %}