{% extends "app_home/base.html" %}
{% load static %}
{% load i18n %}
{% block navbar_app %}
{% include 'app_home/_navbar_app.html' %}
{% endblock %}
{% block title %}
{% translate 'SMS Stats' %}
{% endblock %}
{% block content %}
Années
Date |
Volume |
Emetteurs (distinct) |
destinataires (distinct) |
{% for item in stat_year %}
{{ item.year }} |
{{ item.count }} |
{{ item.numsender }} |
{{ item.numdest }} |
{% endfor %}
Mois
Date |
Volume |
Emetteurs (distinct) |
destinataires (distinct) |
{% for item in stat_month %}
{{ item.year }}-{{ item.month|stringformat:"02d" }} |
{{ item.count }} |
{{ item.numsender }} |
{{ item.numdest }} |
{% endfor %}
Jour
Date |
Volume |
Emetteurs (distinct) |
destinataires (distinct) |
{% for item in stat_day %}
{{ item.year }}-{{ item.month|stringformat:"02d" }}-{{ item.day|stringformat:"02d" }} |
{{ item.count }} |
{{ item.numsender }} |
{{ item.numdest }} |
{% endfor %}
{% endblock %}