{% extends "base.html" %} {% block title %}News โ€” {{ instance_name or "AI Data Analyst" }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
{% if news %}
Version {{ news.version }} ยท published {{ news.published_at.strftime('%Y-%m-%d') if news.published_at else '' }} {% if news.published_by %} by {{ news.published_by }}{% endif %}
{% if news.intro %}
{{ news.intro | safe }}
{% endif %}
{{ news.content | safe }}
{% else %}

No news yet

An admin hasn't published a news update on this instance yet. Check back soon โ€” or, if you're an admin, head to /admin/news to write the first one.

{% endif %}
{% endblock %}