COCKPIT // STATUS
// Quick Insert
// Transmission
// Recent Comms Log
{% for post in history %}
{{ post }}
{% endfor %}
// Mission Log
▾
-
{% set open_tasks = tasks | selectattr('status', 'equalto', 'open') | list %}
{% set done_tasks = tasks | selectattr('status', 'equalto', 'complete') | list %}
{% if open_tasks %}
{% for task in open_tasks %}
- {{ task.title }} {% endfor %} {% else %}
- No active tasks. Good work, captain. {% endif %} {% if done_tasks %}
- // Completed {% for task in done_tasks %}
-
✓{{ task.title }}
{% endfor %}
{% endif %}
// Log this one?