{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Global Announcements{% endblock %} {% block content %}

Server Global Announcements

Send a message to all shops (example: scheduled maintenance / scheduled update).

Create & Send

Recent Announcements

{% for ann in announcements %}
{{ ann['title'] }}
Type: {{ ann['announcement_type'] }}
{{ ann['created_at'] }}

{{ ann['message'] }}

{% else %}

No announcements yet.

{% endfor %}
{% endblock %}