{% extends 'base.html' %} {% block content %}

{% block title %} Chat Admin {% endblock %}

Found {{threads | length }} threads
{% for thread in threads %} {% endfor %}
ID Topic Users Episode | Ratings Time Actions Ext
{{thread.id}} {{thread.topic_id}} {% for user in thread.users %} {{user.id}}, {%endfor%} {{thread.episode_done}}, {{thread.data.get('rating_done', '')}} {{thread.time_created|ctime}} {{thread.time_modified|ctime}} {% if thread.ext_id %}
  • {{thread.ext_src or ''}} ID: {{thread.ext_id or ''}}
{%else%} N/A {% endif%}
{% endblock %}