Type
{{ asset.asset_type }}
Location
{{ asset_summary.current_location or '—' }}
Mission
{{ asset_summary.current_mission or '—' }}
Entries
{{ total_entry_count }}
Docking Target
{% if asset_summary.docking_target %}
{% else %}
Not docked to any asset
{% endif %}
Docked Vehicles
{% if asset_summary.docked_vehicles %}
{% for v in asset_summary.docked_vehicles %}
{% endfor %}
{% else %}
No vehicles docked
{% endif %}
Log Entries
| Date | Type | Title | Mission Label | Action |
{% for entry in entries %}
| {{ entry.timestamp }}{% if entry.end_timestamp %} → {{ entry.end_timestamp }}{% endif %} |
{{ entry.mode_label }} |
{{ entry.title }}{% for node in entry.state_nodes %} → {{ node.title }} ({{ node.at }}{% if node.detail %} · {{ node.detail }}{% endif %}) {% endfor %} |
{{ entry.mission_label }} |
|
{% endfor %}
{% if entry_total_pages > 1 %}
{% if entry_has_prev %}
← Prev{% endif %}
{% for link in entry_page_links %}
{% if link.is_current %}
{{ link.page }}
{% elif link.is_ellipsis %}
...
{% else %}
{{ link.page }}{% endif %}
{% endfor %}
{% if entry_has_next %}
Next →{% endif %}
{% endif %}
Upcoming Events
{% for ev in future_events %}
{{ ev.date }}{{ ev.title }}
{% endfor %}
Quick Info
Retired: {{ 'Yes' if asset.is_retired else 'No' }}
Program: {{ asset.program or '—' }}
Home Region: {{ asset.home_region or '—' }}