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

Engine Catalog

引擎目录

宽屏高密度视图,支持分页、燃料/循环/Mod 筛选,并按推力或比冲排序。

总引擎家族 {{ total_catalog_count }}
当前结果 {{ total_count }}
当前页 {{ page }} / {{ total_pages }}

Actions

新增内容

创建新的引擎家族和初始配置。

新增引擎

Results

结果列表

每页 30 条,单行压缩并补充海平面/真空核心参数。

{% if catalog_rows %}
{% for row in catalog_rows %} {% endfor %}
Engine {% for column in sort_columns if column.key == 'engine_name' %} {% endfor %}
Cycle Fuel Mod Configs
Mass {% for column in sort_columns if column.key == 'mass_t' %} {% endfor %}
SL Thrust {% for column in sort_columns if column.key == 'sl_thrust' %} {% endfor %}
Vac Thrust {% for column in sort_columns if column.key == 'vac_thrust' %} {% endfor %}
SL ISP {% for column in sort_columns if column.key == 'sl_isp' %} {% endfor %}
Vac ISP {% for column in sort_columns if column.key == 'vac_isp' %} {% endfor %}
TWR Action
{{ row.family.engine_name }}
{{ row.family.part_name or "No part name" }}
{{ row.family.cycle or "-" }} {{ row.fuel_types|join(', ') if row.fuel_types else "-" }} {{ row.mod_sources|join(', ') if row.mod_sources else "-" }} {{ row.config_count }} {{ row.mass_t|fmt_decimal }} {{ row.sl_thrust_kn|fmt_decimal }} {{ row.vac_thrust_kn|fmt_decimal }} {{ row.sl_isp|fmt_decimal }} {{ row.vac_isp|fmt_decimal }} {{ row.twr|fmt_decimal }}
详情 编辑
{% if total_pages > 1 %} {% endif %} {% else %}

没有命中结果

调整筛选条件,或者重置后重新查看全部引擎。

{% endif %}
{% endblock %}