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

Tank

燃料箱目录

支持分页、筛选、排序和快速编辑。

总记录 {{ total_catalog_count }}
当前结果 {{ total_count }}
当前页 {{ page }} / {{ total_pages }}

Actions

新增内容

新增燃料箱
重置
{% if rows %}
{% for row in rows %} {% endfor %}
Tank Fuel Vehicle Volume (L) Dry (t) Fuel (t) Wet (t) Ratio Source Action
{{ row.tank_name }} {{ row.fuel_type or '-' }} {{ row.vehicle_name or '-' }} {{ row.tank_volume_l if row.tank_volume_l is not none else '-' }} {{ row.dry_mass_t if row.dry_mass_t is not none else '-' }} {{ row.fuel_mass_t if row.fuel_mass_t is not none else '-' }} {{ row.wet_mass_t if row.wet_mass_t is not none else '-' }} {{ row.mass_ratio if row.mass_ratio is not none else '-' }} {{ row.source or '-' }}
编辑
{% if total_pages > 1 %} {% endif %} {% else %}

没有命中结果

调整筛选条件或重置后重试。

{% endif %}
{% endblock %}