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

{{ level_name }}


Current time step: {{time_step}} (max steps: {{max_step}})


Current dishes:
    {% for task_name, task_lifetime in tasks_name|zip(tasks_lifetime) %}
  1. {{ task_name }}; remaining time: {{ task_lifetime }}
  2. {% endfor %}


{% for agent in agents %} {% endfor %}
Robot states
robot name robot location items this robot is holding robot is using tools (robot cannot perform any other actions if it is using tools)
robot {{agent.id}} {{agent.location}} {{agent.hold}} {{agent.occupy}}

{% for tool in tools %} {% endfor %}
Kitchen states
location name objects inside the location location is in use (cannot activate the location if it is in use)
{{tool.id}} {{tool.objects}} {{tool.occupy}}

{% for agent in num_agents %}
{% endfor %}

Dishes completed:
{{ accomplished_orders }}

Previous Actions:
{% for action in previous_actions %} {{action}}
{% endfor %}




{% endblock %}