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

Play{% if play.name %}: {{ play.name }}{% endif %}

{{ play.time_start |datefmt }} {{ play.time_end |datefmt }}

{{ tasks.count() }} Tasks

{{ play.duration |timefmt }} Duration

Tasks

{% for task in tasks %} {% endfor %}
Offset from play Duration Action File Line
{{ task.offset_from_play |timefmt }} {{ task.duration |timefmt }} {{ task.action }} {{ task.file.path|pathtruncate(60) }} {{ task.lineno }} {{ macros.make_link('task.show_task', 'details', task=task.id) }}
{% endblock %}