{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock head %} {% block content %}
| 启动作业 | 类型 | 执行序列 | [路径/内容 | 命令] | 操作 |
|---|---|---|---|---|
| {{ boot_jobs_mapping_by_id[item.boot_job_id].name }} | {% if item.kind == 0 %} 命令 {% elif item.kind == 1 %} 覆写文件 {% elif item.kind == 2 %} 追加内容 {% else %} 未知 {% endif %} | {{ item.sequence }} |
{% if item.kind in [1, 2]%}
{{ item.path }}
{{ item.content }}
{% elif item.kind == 0 %}
{{ item.command }}
{% endif %}
|