py-backend-analytics 🚀

{% for period, data in [('All Time 🌌', all_time), ('Last Year 📅', last_year), ('Last Month 🌙', last_month)] %}

{{ period }}

Top Pages 📄

    {% for item in data.top_pages %}
  • {{ item.value }} {{ item.count }}
  • {% endfor %}

Top Sources 🔗

    {% for item in data.top_sources %}
  • {{ item.value }} {{ item.count }}
  • {% endfor %}

Top Countries 🌍

    {% for item in data.top_countries %}
  • {{ item.value }} {{ item.count }}
  • {% endfor %}
{% endfor %}

Recent Activity ⚡

{% for req in recent_requests %} {% endfor %}
Timestamp Page Source Location
{{ req.datestamp[:19] }} {{ req.page }} {{ req.source }} {{ req.location or '🛰️ Orbital' }}