{% extends 'base.html' %}
{% load static %}
{% load i18n %}
{% block custom_head_css_js %}
{% endblock %}
{% block content %}
{% trans 'Asset list of ' %}
{{ asset_group.name }}
{% trans 'Hostname' %} |
{% trans 'IP' %} |
{% trans 'Port' %} |
{% trans 'Type' %} |
{% trans 'Alive' %} |
{% trans 'Action' %} |
{# {% for asset in assets %}#}
{# #}
{# {{ asset.hostname }} | #}
{# {{ asset.ip }} | #}
{# {{ asset.port }} | #}
{# {% if asset.is_active %}#}
{# | #}
{# {% else %}#}
{# | #}
{# {% endif %}#}
{# #}
{# {% trans "Delete" %}#}
{# {% trans "Update" %}#}
{# | #}
{#
#}
{# {% endfor %}#}
{% trans 'Add asset to this group' %}
{% trans 'Associate system user' %}
{% for system_user in system_users %}
{{ system_user.name }} |
|
{% endfor %}
{% endblock %}
{% block custom_foot_js %}
{% endblock %}