{% extends "base.html" %} {% block title %}News - ABYSS SMS{% endblock %} {% block content %}
All News
Add News
{% for news in news_list.items %} {% endfor %}
Headline Content Created Status Actions
{{ news.headline }} {{ news.content[:100] }}{% if news.content|length > 100 %}...{% endif %} {{ news.created_at.strftime('%Y-%m-%d') if news.created_at else '' }} {% if news.is_active %} Active {% else %} Inactive {% endif %}
{% if news_list.pages > 1 %} {% endif %}
{% endblock %}