{% extends 'base.html' %} {% block title %}Messages | Admin | {{ settings.site_name }}{% endblock %} {% block content %} Dashboard Messages Contact Messages All Messages Open Closed Filter Clear {% if threads.items %} {% for thread in threads.items %} {% if thread.is_closed %} Closed {% else %} Open {% endif %} {{ thread.subject }} {{ thread.name }} {{ thread.email }} {{ thread.messages.count() }} message{{ 's' if thread.messages.count() != 1 else '' }} {{ thread.created_at.strftime('%b %d, %Y') }} {% set all_msgs = thread.messages.all() %} {% if all_msgs %} Last: {{ all_msgs[-1].created_at.strftime('%b %d') }} {% endif %} {% endfor %} {% if threads.pages > 1 %} {% if threads.has_prev %} {% endif %} {% for page in threads.iter_pages(left_edge=2, left_current=2, right_current=2, right_edge=2) %} {% if page %} {{ page }} {% else %} ... {% endif %} {% endfor %} {% if threads.has_next %} {% endif %} {% endif %} {% else %} No Messages Found {% if request.args %} No messages match your filters. {% else %} No contact messages have been received yet. {% endif %} {% endif %} {% endblock %}
{% if request.args %} No messages match your filters. {% else %} No contact messages have been received yet. {% endif %}