{% extends "base.html" %} {% from "_datetime_picker_field.html" import datetime_picker_field %} {% block content %} {% include "_mission_ops_tabs.html" %} {% include "_mission_preview_header.html" %}
时间范围
{{ datetime_picker_field('开始', 'start', timeline_range_start, field_id='timeline-start') }} {{ datetime_picker_field('结束', 'end', timeline_range_end, field_id='timeline-end') }}
时间线筛选
重置
显示资产 {% if timeline_asset_options %}
{% for option in timeline_asset_options %} {% endfor %}

未勾选任何 Asset 时,默认显示当前筛选命中的全部资产。

{% else %}

当前筛选条件下没有可选资产。

{% endif %}

Timeline

多资产时间线

转移段 持续运行 停泊 / 地表 / 待命 当前活动状态
范围: {{ timeline_range_display }} 尺度: {{ timeline_scale_mode|title }} 资产: {% if selected_asset_count %}已选 {{ selected_asset_count }} 个{% else %}显示 {{ timeline_rows|length }} 条{% endif %} 模式: {{ record_scope_options|selectattr('value', 'equalto', record_scope)|map(attribute='label')|first }}
{% if timeline_rows %}
{% for label in timeline_scale %} {{ label }} {% endfor %}
{% for row in timeline_rows %} {% endfor %}
{% else %}

当前时间范围内没有时间线条目

{% endif %}
{% endblock %}