← Back to RTube

Announcements

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Create New Announcement

Leave empty for no expiration
{% if announcements %}
{% for announcement in announcements %}
{% if announcement.is_expired() %} Expired {% elif announcement.is_active %} Active {% else %} Inactive {% endif %} {% if announcement.expires_at and not announcement.is_expired() %} {% set days = announcement.days_remaining() %} {% if days == 0 %} Expires today {% elif days == 1 %} Expires in 1 day {% else %} Expires in {{ days }} days {% endif %} {% elif not announcement.expires_at %} No expiration {% endif %}
{{ announcement.message }}
{% endfor %}
{% else %}

No announcements

Create an announcement above to display a banner to all users.

{% endif %}