COCKPIT // STATUS
{% include 'includes/ledger_footer_badge.html' %}
// Quick Insert
// Transmission
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{% endfor %}
{% endif %}
{% endwith %}
// 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 }}post ↗ {% endfor %} {% else %}
- No active tasks. Good work, captain. {% endif %} {% if done_tasks %}
- // Completed {% for task in done_tasks %}
-
✓{{ task.title }}post ↗
{% endfor %}
{% endif %}
// Log this one?