{% extends "base.html" %} {% block title %}Call Log{% endblock %} {% block content %}

Call Log

{% if search_criteria %} Search: {{ search_criteria }}   {% endif %} {% if not calls %}

Results: None

{% else %}
{{ pagination.info }} {{ pagination.links }}
{% for item in calls %} {% endfor %}
Time Caller Actions Reason
{{ item.time }}
{{ item.date }}
{{ item.phone_no }}
{{ item.name }}
{{ item.action }} {% if item.msg_no is not none %} {% endif %} {{ item.reason }}
{{ pagination.links }} {% endif %}
{% include 'modal_play_message.html' %} {% endblock %} {% block js %} {% endblock %}