{% include 'admin/partials/header.html' %} {% include 'admin/partials/sidebar.html' %}
COMMUNICATION

Announcements

Create scheduled board-wide notices shown above public pages.

Total notices{{ count($announcements) }}
Enabled{{ count(array_filter($announcements, fn($a) => !empty($a['enabled']))) }}
Scheduled{{ count(array_filter($announcements, fn($a) => !empty($a['starts_at']))) }}
Expiring{{ count(array_filter($announcements, fn($a) => !empty($a['ends_at']))) }}

Existing announcements

Review, edit, disable, or remove published notices.

{% if !$announcements %}
No announcements yet

Create a notice when you need to share board-wide information.

{% else %}
{% foreach $announcements as $announcement %}
{{ $announcement['enabled']?'Enabled':'Disabled' }}
{{ $announcement['title'] }}

{{ $announcement['message'] }}

{{ $announcement['starts_at']?:'Immediate' }} → {{ $announcement['ends_at']?:'No end date' }}
Edit
{% endforeach %}
{% endif %}
{% include 'admin/partials/footer.html' %}