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

Chat Topics

{% if limits %} Summary {% endif %}
    {% for topic, thread, n_threads in data %}
  1. {{topic['name']}} User Num: {{ topic.max_human_users_per_thread }} {{n_threads}}/{{ topic.max_threads_per_topic }}
    {% if thread %} {{ thread.time_created | ctime }} {% if thread.episode_done %} You have already completed this task. No further action is necessary, though you may review your previous submission. {% else %} Continue You have not yet completed this task{%endif%}
    {% else %} Start chat
    {% endif %}
  2. {%endfor %}
{% endblock %}