{% extends 'settings/layout.html' %} {% load i18n %}{% load humanize %} {% block title %}{% trans "Announcements" %}{% endblock %} {% block header %}{% trans "Announcements" %}{% endblock %} {% block edit-button %} {% trans "Create Announcement" as text %} {{ text }} {% endblock %} {% block panel %}
{% for announcement in announcements %} {% endfor %} {% if not announcements %} {% endif %}
{% url 'settings-announcements' as url %} {% trans "Date added" as text %} {% include 'snippets/table-sort-header.html' with field="created_date" sort=sort text=text %} {% trans "Preview" as text %} {% include 'snippets/table-sort-header.html' with field="preview" sort=sort text=text %} {% trans "Start date" as text %} {% include 'snippets/table-sort-header.html' with field="start_date" sort=sort text=text %} {% trans "End date" as text %} {% include 'snippets/table-sort-header.html' with field="end_date" sort=sort text=text %} {% trans "Status" as text %} {% include 'snippets/table-sort-header.html' with field="active" sort=sort text=text %} {% trans "Actions" %}
{{ announcement.created_date|naturalday }} {{ announcement.preview }} {{ announcement.start_date|naturaltime|default:'' }} {{ announcement.end_date|naturaltime|default:'' }} {% if announcement.active %}{% trans "active" %}{% else %}{% trans "inactive" %}{% endif %}
{% csrf_token %}
{% trans "No announcements found" %}
{% include 'snippets/pagination.html' with page=announcements path=request.path %} {% endblock %}