{% extends 'base.html' %} {% load mytags %} {% block content %} {% include 'nav_cat_bar.html' %}
授权规则
{% for rule in rules %} {% endfor %}
时间 名称
{{ rule.date_added | date:"Y-m-d H:i:s"}} {{ rule.name }}
授权用户/用户组
{% for user in users %} {% endfor %}
用户 用户组
{{ user.name }} {{ user | user_which_groups:"group" }}
授权主机/主机组
{% for asset in assets %} {% endfor %}
主机 主机组
{{ asset.ip }} {{ asset | asset_which_groups:"group" }}
推送主机
删除 {% for asset, info in pushed_asset.items %} {% if info.success %} {% else %} {% endif %} {% endfor %}
主机 密钥 密码 结果 操作
{{ asset.hostname }} {{ info.key | yesno:"是,否,未知" }} {{ info.password | yesno:"是,否,未知" }} {{ info.success | yesno:"成功,失败,未知" }} {{ info.success | yesno:"成功,失败,未知" }}
未推送主机
推送 {% for asset in need_push_asset %} {% endfor %}
主机 IP
{{ asset.hostname }} {{ asset.ip }}
{% endblock %} {% block self_footer_js %} {% endblock %}