{% extends "base.html" %} {% block title %}Actions - {{ user.username }}{% endblock %} {% block content %}

Action log

Note: AntennaPod stamps every action with the sync time, not the actual play time. The "synced" timestamp below reflects when the server received the action.

{{ total }} record(s) · page {{ page }} of {{ total_pages }}

{% for it in items %} {% set a = it.row %}
{{ it.episode_title or a.episode_url }}
{{ a.action }} · {{ it.podcast_title }} {% if a.device_id %} · device {{ a.device_id }}{% endif %}
synced {{ a.uploaded|fmt_ts }} {% if a.action == 'play' and a.position is not none %} · position {{ a.position }}s {% endif %} · listen ↗
{% else %}

No actions match.

{% endfor %} {% if total_pages > 1 %} {% set base_qs = "action=" ~ filter_action ~ "&device=" ~ filter_device ~ "&podcast=" ~ (filter_podcast|urlencode_q) ~ "&sort=" ~ sort ~ "&per_page=" ~ per_page %} {% endif %} {% endblock %}