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

Statistics

{% if new_messages > 0 %}
{% endif %}

Recent Calls

{% if recent_calls %} {% for item in recent_calls %} {% endfor %}
Time Caller Actions
{{ item.time }}
{{ item.date }}
{{ item.phone_no }}
{{ item.name }}
{{ item.action }} {% if item.msg_no is not none %} {% endif %}
{% endif %}

Calls Per Day

{% if calls_per_day %}
{% endif %}

Top Permitted Callers

{% if top_permitted %} {% for item in top_permitted %} {% endfor %}
Caller Count
{{ item.phone_no }} -
{{ item.name }}
{{ item.count }}
{% endif %}

Top Blocked Callers

{% if top_blocked %} {% for item in top_blocked %} {% endfor %}
Caller Count
{{ item.phone_no }} -
{{ item.name }}
{{ item.count }}
{% endif %}
{% endblock %} {% block js %} {% endblock %}