{% extends "base.html" %} {% block title %}API 列表{% endblock %} {% block content %}

API 配置列表

新建 API
{% for api in apis %} {% else %} {% endfor %}
名称 URL 调度 启用 操作
{{ api.name }} {{ api.url }} {{ api.schedule_type }}: {{ api.schedule_expression }} {% if api.schedule_type == 'cron' %}
{{ api.schedule_expression|cron_human }}
{% endif %}
{% if api.enabled %} 已启用 {% else %} 已停用 {% endif %} 编辑 查看日志
暂无 API 配置。
{% endblock %}