{% extends "admin/base_site.html" %}
{% block extrastyle %}
{{ block.super }}
{% endblock %}
{% block extrahead %}
{% endblock %}
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
{% block content_title %}
SES Stats
{% endblock %}
{% block content %}
Access Key: {{ access_key }}
Quotas
24 Quota |
24 Sent |
Quota Remaining |
Per/s Quota |
{{ 24hour_quota }} |
{{ 24hour_sent }} |
{{ 24hour_remaining }} |
{{ persecond_rate }} |
Sending Stats
Delivery Attempts |
Bounces |
Complaints |
Rejected |
{{ summary.DeliveryAttempts }} |
{{ summary.Bounces }} |
{{ summary.Complaints }} |
{{ summary.Rejects }} |
Sending Activity
Delivery Attempts |
Bounces |
Complaints |
Rejected |
{% if local_time %}Local Time{% else %}Timestamp{% endif %} |
{% for datapoint in datapoints %}
{{ datapoint.DeliveryAttempts }} |
{{ datapoint.Bounces }} |
{{ datapoint.Complaints }} |
{{ datapoint.Rejects }} |
{{ datapoint.Timestamp }} |
{% endfor %}
{% endblock %}
{% block sidebar %}
Verified Emails
Email Address |
{% for email_address in verified_emails %}
{{ email_address }} |
{% endfor %}
{{ verified_emails|length }} |
{% endblock %}