{% extends "service_monitor/base.html" %} {% block title %}目标管理{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
⚙️ 监测目标管理
名称主机类型用户名操作
{% for t in targets %}
{{ t.name }} {{ '本机' if t.type == 'local' else (t.host ~ ':' ~ t.port) }} {{ '本机' if t.type == 'local' else '远程' }} {{ t.username or '-' }}
{% if t.type == 'remote' %} {% else %} {% endif %}
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}