{% extends "base.html" %}
{% block content %}
Chat Topics
{% if limits %}
Summary
- We have
{{data | length}}
chat topics in total.
- You have started chatting on
{{limits['threads_launched']}}
topics. You may work on upto {{[data | length, limits['max_threads_per_user']]| min }}
items below.
- We call the chat thread is complete after certain turns (i.e., your replies). So far you have completed
{{limits['threads_completed']}}
of such.
- We are trying to collect upto
10
(might be different for different tasks) threads per topic. You may not be able to start a chat if we have already received sufficient submissions.
{% endif %}
{% for topic, thread, n_threads in data %}
-
{{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 %}
{%endfor %}
{% endblock %}