{% extends 'base.html' %} {% block title %}SMS Logs - Notifications{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

SMS Logs

View all SMS message delivery logs

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Clear
SMS Message Logs {% if logs %} {{ logs|length }} result{{ logs|length|pluralize }} {% endif %}
{% if logs %}
{% for log in logs %} {% endfor %}
Phone Number Recipient Message Status Sent At Template Actions
{{ log.recipient_phone }} {% if log.recipient_name %} {{ log.recipient_name }} {% else %} No name {% endif %}
{{ log.message }}
{% if log.status == 'sent' %} Sent {% elif log.status == 'failed' %} Failed {% elif log.status == 'pending' %} Pending {% elif log.status == 'delivered' %} Delivered {% endif %} {{ log.sent_at|date:"M d, Y" }}
{{ log.sent_at|time:"H:i" }}
{% if log.template_used %} {{ log.template_used.name }} {% else %} Manual {% endif %}
{% if log.status == 'failed' and log.error_message %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

No SMS logs found

No SMS messages have been sent yet or no results match your filters.

Send Test SMS
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}